我有一个使用gem'wicked_pdf'创建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文本看起来相同。
答案 0 :(得分:2)
body {
font-family: 'OpenSansRegular';
font-size: 8px;
}
在html.erb文件中添加此css。