Prawn 有多少种字体可用?
我一直在随机尝试 Prawn 中的 Ruby 字体。
例如: Times New Roman - 是 Palatino Linotype - 否
有可用字体和不可用字体的列表吗?
I've been randomly trying fonts in Prawn, for Ruby.
For Example:
Times New Roman - Yes
Palatino Linotype - No
Is there a list of which fonts are available and which aren't?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
代码中有默认字体列表,位于 lib/prawn/font/afm.rb (版本 1.0.0.rc1):
There's a list of default fonts in the code, at lib/prawn/font/afm.rb (version 1.0.0.rc1):
默认情况下有 14 种字体可供使用:各种粗体和斜体形式的 Courier、Helvetica、Symbol、Times 和 ZapfDingbats。
几乎在每种情况下,我都建议使用 font() 方法来加载您选择的外部 truetype 字体。这样做的另一个好处是让您可以选择使用非拉丁字符。
简短的回答:没有列表,只需使用 TTF。
14 fonts are available by default: Courier, Helvetica, Symbol, Times and ZapfDingbats in various bold and italic forms.
In nearly every case I'd recommend using the font() method to load an external truetype font of your choosing. This has the added benefit of give you the option to use non latin characters.
Short answer: there's no list, just use TTF.