邪恶PDF字体大小

3

我有一个使用'wicked_pdf' gem创建PDF的Rails 3应用程序。

我有一个在线看起来很好的HTML页面。但是,当它成为PDF时,字体太大了。

这是我的控制器代码:

  def invoice_pdf
    @invoice = Invoice.find(params[:invoice_id])
    respond_to do |format|
      format.html # index.html.erb
      format.pdf do
        render pdf: "invoice.pdf",
               font_size: 8,
               disable_links: true,
               template: 'invoices/_invoice_pdf.html.erb'
      end
    end
  end

font_size: 8似乎无效。我可以将其更改为任何值,PDF文本看起来都一样。

1个回答

3
body {
  font-family: 'OpenSansRegular';
  font-size: 8px;
}

在你的html.erb文件中添加以下css。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接