使用ImageMagick,您如何看到所有可用的字体?

fly*_*ire 72 image-manipulation imagemagick text2image

ImageMagick可以将文本绘制成给定字体的图片,如何查看系统的所有可用字体?

Nik*_*iko 110

取决于你的imagemagick版本:

convert -list type       # for IM older than v6.3.5-7
convert -list font       # for newer versions
Run Code Online (Sandbox Code Playgroud)

输出格式也改变了......

  • 如果`convert -list font`什么都不打印,你会怎么做? (7认同)

小智 9

要仅列出字体名称,请执行 convert -list font | grep Font


Cha*_*iam 8

字体有点棘手.ImageMagick通常不会"看到"您的系统字体.在OS/X上,字体以非标准格式存储.

使用convert -list font看看ImageMagick的目前知道的字体.它可能是空白的.

ImageMagick查找$HOME/.magick/type.xml字体列表.如果您使用的是OS/X,请访问http://gothick.org.uk/2008/03/14/using-os-x-fonts-in-imagemagick/上的精心编写的教程.