有了ImageMagick,你怎么看到所有可用的字体?

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

取决于你的imagemagick版本:

convert -list type # for IM older than v6.3.5-7 convert -list font # for newer versions 

也输出格式改变…

字体有点棘手。 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/看看写得很好的教程。;

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