为位图字体文件中的每个字形生成标记图像
是否有一种简单的方法可以为给定位图字体文件中包含的每个字形生成带标签的位图图像?
我正在尝试将日语 .bdf 字体集合转换为可在 MATLAB 和 C++ 中使用的格式,其中每个字形用作其表示的字符的 OCR 分类键。
Is there an easy way to generate a labeled bitmap image for each glyph contained in a given bitmap font file?
I'm trying to convert a collection of Japanese .bdf fonts into a format usable in MATLAB and C++, where each glyph is used as the OCR classification key for the character it represents.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FontForge 支持 位图
分发格式 (BDF) 文件。您也许可以从那里导出 BMP 文件。我还找到了 bdf2png。您可以阅读 BDF 规范并实现您自己的解决方案,这看起来还不错,因为格式是 ASCII。
FontForge has support for Bitmap
Distribution Format (BDF) files. You can probably export a BMP files from there. I also found bdf2png. You can read up on the BDF specification and implement your own solution, which doesn't seem too bad as the format is in ASCII.