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.
创建 PDF 文档时如何使用材质 ui 图标作为字体。我正在尝试使用MaterialIcons-Regular.ttf作为字体。
有没有我可以参考的例子。或者有没有更好的方法来使用 itext7 处理 PDF 文档中的字体图标。
我不完全确定你在问什么,但它应该是这样的:
PdfFont f1 = PdfFontFactory.createFont("MaterialIcons-Regular.ttf", "Identity-H", true); Paragraph p1 = new Paragraph("Testing of symbols \ue000,\ue0bb").setFont(f1);
请注意,字符位于私人区域。在 windows 中安装字体并使用字符映射应用程序来定位字符。