我正在使用Prawn
/Prawnto_2
为我的 Rails 应用程序生成 PDF。我正在尝试加载自定义字体,但不断收到以下错误:
MyControllers 中的 Prawn::Errors::UnknownFont#report
我将字体放在我的assets/font
目录中,重新启动服务器,但没有运气。
我的report.pdf.prawn
:
font_families.update(
"Garamond" => {
:normal => "#{Rails.root}/app/assets/fonts/Garamond/AGaramondPro-Regular.otf",
})
font("Garamond", :size => 10) do
text "Hello PDF"
end
它确实适用于 Open Sans,但对其他字体没有运气。我在这里做错了什么?