将TrueType字形转换为PNG图像?

Pro*_*ica 3 linux rendering bitmap command-line-interface truetype

是否有命令行工具将字形从TTF文件转换为PNG(或其他一些位图图像格式)?

如果没有现成的命令行工具,那么你将如何从C++,Perl,Python或Ruby中的一个或者在Ubuntu盒子上轻松找到它?

imc*_*par 9

可能部分重复我怎么能在Mac上免费将TTF字形转换为.png文件?

imagemagick可以满足这种要求,在Mac/Linux/Windows上运行正常.:-)

convert -background none -fill black -font font.ttf -pointsize 300 label:"Z" z.png
Run Code Online (Sandbox Code Playgroud)

如果需要批量转换,也许你可以考虑使用一个名为ttf2png的小ruby脚本.