Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 libharu 中使用条形码字体(ADVC128C.TTF),但它没有打印(throwing exception - Unsupported ttf format)。我曾经HPDF_LoadTTFontFromFile()加载字体文件。我们如何使用 LibHaru pdf 库打印条形码?你能帮我解决这个问题吗?
throwing exception - Unsupported ttf format
HPDF_LoadTTFontFromFile()
谢谢和问候,桑托什·卡达姆。
我在使用其他条码字体(code128.ttf)时遇到了同样的问题,它丢失了cvt,fpgm哪些是 libharu 的必需标签。我设置了HPDF_REQUIRED_TAGS_COUNT2 并消除了那些REQUIRED_TAGS。两者都在hpdf_fontdef_tt.c.
cvt
fpgm
HPDF_REQUIRED_TAGS_COUNT
REQUIRED_TAGS
hpdf_fontdef_tt.c
这对我在HPDF_LoadTTFontFromFile().
乌斯基