我需要从同一目录中的PostScript 1字体识别字体SuitCase ,没有扩展程序,然后转换每个SuitCase字体到.ttf
。
|- Kigali [font SuitCase]
|- KigalBlo [PostScript 1 font]
|- KigalIta [PostScript 1 font]
|- KigalLx [PostScript 1 font]
|- KigalLxIta [PostScript 1 font]
...
Kigali
文件在OSX中打开,其中包含所有字体变体。 PostScript字体也可以打开,也不是SuitCase所必需的,它是独立的。
file
命令无法识别其中任何一个并返回empty
。
fontforge
甚至无法识别SuitCase中的字体:
#!/usr/local/bin/fontforge
fonts = FontsInFile($1)
Print("Fonts inside "+$1+":")
Print(fonts)
$ ./convert.pe Kigali
Fonts inside Kigali:
[]
我使用fontforge
安装了brew
。版本为:fontforge: stable 20150330
我无法弄清楚如何操纵这个不起眼的字体fomat。有人试过并成功吗?