FontForge 的替代品
我在 Ubuntu 下使用 Python 绑定 FontForge。它不断地崩溃,没有任何关于原因的线索,例如分段错误、内存映射错误等。
我所需要的只是读取字体文件(.ttf 和 .otf)元数据(字体名称、系列名称、版本、唯一) id、版权、许可证、设计者、设计者 url 等)并计算它拥有的字形。
有没有比 fontforge 更稳定的方式完成上述工作的替代方案?任何建议将不胜感激。
I use python bindings for FontForge under Ubuntu. It constantly runs into crash without any clues about the reason, e.g. segmentation fault, memory mapping errors, etc.
All what I need is to read font file's (.ttf and .otf) meta data (font name, family name, version, unique id, copyright, license, designer, designer url, etc) and count the glyphs it has.
Are there any alternatives to fontforge which do above jobs in a more stable way? Any suggestions will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我之前在 ubuntu x64 上也遇到过一些 fontforge 问题。
我使用它来添加 opentype 规则,但当我尝试修改这些元数据时,有时会发生错误。
最新的 svn 好多了,我的意思是最少崩溃,我使用以下指南从 svn 安装。
http://openfontlibrary.org/wiki/How_to_install_FontForge
另一种选择是您只需要元数据,对吗?
对于这种情况,您可以将其保存为 .sfd 文件,因为它是文本文件,
你可以从 python 中逐行读取它。
抱歉只谈论 fontforge,因为它只是我之前用作字体编辑器的一个。
I had some issue with fontforge at my ubuntu x64 before too.
I am using it for adding opentype rules, but error sometimes happen, when I try to modify those metadata.
Latest svn is a lot better, I mean least crashing, I use following guide to install from svn.
http://openfontlibrary.org/wiki/How_to_install_FontForge
Another option is you only need metadata right?
For that case, you could just save it to fontforge file as .sfd, and since it is text file,
you can read it line by line from python.
Sorry for talking about fontforge only, because Its only the one I used as font editor before.
https://github.com/davelab6/pyfontaine/ 执行此操作
https://github.com/davelab6/pyfontaine/ does this