如何生成快递新 U+2588 █ TCPDF 的符号?
我需要使用 TCPDF 生成符号 U+2588 █ (Courier New)。我目前正在使用 TCPDF::Rect 来获得类似的东西。
I need to generate the symbol U+2588 █ (Courier New) with TCPDF. I am currently using the TCPDF::Rect
to get something similar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 TCPDF 网站上的这个示例,TCPDF 支持 Unicode。因此,您可以只包含 Unicode 符号 (
U+2588 FULL BLOCK
),并像平常一样指定字体。According to this example on the TCPDF website, TCPDF supports Unicode. Therefore, you can just include your Unicode symbol (
U+2588 FULL BLOCK
), and specify the font as you normally would.如果所需的字体字形不存在,则必须使用 FontForge 编辑字体并添加它。
然后可以直接使用addTTFfont()方法转换TTF字体(需要最新的TCPDF版本)。
请访问 http://www.tcpdf.org 网站了解更多信息和示例。
If the required font glyph do not exist, then you have to edit the font using FontForge and add it.
Then you can convert the TTF font directly using the addTTFfont() method (requires the latest TCPDF version).
Check the http://www.tcpdf.org website for further information and examples.