Prawn 有多少种字体可用?

发布于 2024-10-31 15:39:47 字数 116 浏览 3 评论 0原文

我一直在随机尝试 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

葬心 2024-11-07 15:39:47

代码中有默认字体列表,位于 lib/prawn/font/afm.rb (版本 1.0.0.rc1):

module Prawn
  class Font
    class AFM < Font
      BUILT_INS = %w[ Courier Helvetica Times-Roman Symbol ZapfDingbats
                      Courier-Bold Courier-Oblique Courier-BoldOblique
                      Times-Bold Times-Italic Times-BoldItalic
                      Helvetica-Bold Helvetica-Oblique Helvetica-BoldOblique ]

There's a list of default fonts in the code, at lib/prawn/font/afm.rb (version 1.0.0.rc1):

module Prawn
  class Font
    class AFM < Font
      BUILT_INS = %w[ Courier Helvetica Times-Roman Symbol ZapfDingbats
                      Courier-Bold Courier-Oblique Courier-BoldOblique
                      Times-Bold Times-Italic Times-BoldItalic
                      Helvetica-Bold Helvetica-Oblique Helvetica-BoldOblique ]
困倦 2024-11-07 15:39:47

默认情况下有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文