wxPython:从文件加载字体

发布于 2024-08-27 08:42:35 字数 53 浏览 5 评论 0原文

我正在制作一个 wxPython 应用程序,并且我想使用我存档的一些非标准字体。我该怎么做?

I'm making a wxPython app, and I want to use some non-standard font that I have on file. How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

完美的未来在梦里 2024-09-03 08:42:35

您需要的 Win32 API 称为 AddFontResource (当您使用完字体后,您还需要使用RemoveFontResource)。我无法找到此函数的 python 包装器,因此您需要使用 ctypes 或等同于直接访问 API。添加字体后,应该可以以通常的方式访问它(请注意,所有应用程序都可以访问它)。

有一个 SO 线程 建议使用FreeType 库包装器 (ft2) 但这似乎有点矫枉过正(除非您有其他需要)并且包装器被标记为 beta。

The Win32 API you need is called AddFontResource (you'll also want to use RemoveFontResource when you're done with a font). I haven't been able to find a python wrapper for this function, so you'll need to use ctypes or equivalent to access the API directly. Once the font has been added, it should be accessible in the usual way (note that it will be accessible to all applications).

There's an SO thread that suggests using a FreeType library wrapper (ft2) but this seems like overkill (unless you have some other need for it) and the wrapper is marked as beta.

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