FontForge 的替代品

发布于 2024-08-12 09:13:16 字数 217 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尬尬 2024-08-19 09:13:16

我之前在 ubuntu x64 上也遇到过一些 fontforge 问题。

我使用它来添加 opentype 规则,但当我尝试修改这些元数据时,有时会发生错误。

最新的 svn 好多了,我的意思是最少崩溃,我使用以下指南从 svn 安装。

http://openfontlibrary.org/wiki/How_to_install_FontForge

另一种选择是您只需要元数据,对吗?

对于这种情况,您可以将其保存为 .sfd 文件,因为它是文本文件,
你可以从 python 中逐行读取它。

FontName: -----
FullName: ------
FamilyName: ------
Weight: -----
...

抱歉只谈论 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.

FontName: -----
FullName: ------
FamilyName: ------
Weight: -----
...

Sorry for talking about fontforge only, because Its only the one I used as font editor before.

强者自强 2024-08-19 09:13:16

我需要的只是读取字体文件(.ttf 和 .otf)元数据(字体名称、家族名称、版本、唯一 ID、版权、许可证、设计者、设计者 url 等)并计算它所具有的字形

https://github.com/davelab6/pyfontaine/ 执行此操作

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

https://github.com/davelab6/pyfontaine/ does this

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文