Java中的TrueType解析?
是否有一个简单的库可以解析 True Type 字体文件并为我提供矢量/点列表供我自己渲染它? 我说的是类似于 freetype 的东西,但是是针对 Java 的。
Is there a simple library that can parse a True Type font file and give me a list of vectors/points for me to render it myself? I'm talking about something similar to freetype, but for Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Java 可以开箱即用地做到这一点。 前一段时间,我探索了这个领域。
我使用 Processing 进行简单/快速的图形渲染,但访问字体信息的代码是纯 Java 。 所以也许你会对我的小程序感兴趣。 我刚刚将其粘贴到 Pastebin
Java can do that out of the box. Some time ago, I explored this field.
I used Processing for easy/fast graphic rendering, but the code to access font information is pure Java. So maybe my little program can be of interest for you. I just pasted it in Pastebin
您可以使用 Batik 解析 TrueType 字体并生成 SVG 文件(SVGFont)。 所以我打赌你可以使用这些库来获取向量。
You can use Batik to parse a TrueType Font and generate an SVG file (SVGFont). So I bet that you could use the libraries to get your vectors out.