/simsun.ttc is not a valid TTF or OTF file.

错误提示

错误提示一:

/simsun.ttc is not a valid TTF or OTF file.

后话:看到这个提示你是不是真觉得是这个问题,不是有效的ttf,跟otf文件,然后就换成otf类型的文件,就出现了下边这个错误

错误提示二:

Caused by: com.lowagie.text.DocumentException: Table 'name' does not exist in /static/SourceHanSerifSC-VF.otf at com.lowagie.text.pdf.TrueTypeFont.getBaseFont(Unknown Source) ~itext-2.1.7.jar:na at com.lowagie.text.pdf.TrueTypeFont.process(Unknown Source) ~itext-2.1.7.jar:na at com.lowagie.text.pdf.TrueTypeFontUnicode.(Unknown Source) ~itext-2.1.7.jar:na at com.lowagie.text.pdf.BaseFont.createFont(Unknown Source) ~itext-2.1.7.jar:na at com.lowagie.text.pdf.BaseFont.createFont(Unknown Source) ~itext-2.1.7.jar:na at com.lowagie.text.pdf.BaseFont.createFont(Unknown Source) ~itext-2.1.7.jar:na at org.xhtmlrenderer.pdf.ITextFontResolver.addFont(ITextFontResolver.java:201) ~flying-saucer-pdf-9.1.6.jar:na at org.xhtmlrenderer.pdf.ITextFontResolver.addFont(ITextFontResolver.java:193) ~flying-saucer-pdf-9.1.6.jar:na at org.xhtmlrenderer.pdf.ITextFontResolver.addFont(ITextFontResolver.java:188) ~flying-saucer-pdf-9.1.6.jar:na at hu.rfit.textile.service.impl.PdfPrinterService.printPDF(PdfPrinterService.java:53) ~[TextileApp-1.0.0-SNAPSHOT.jar:1.0.0-SNAPSHOT:4749

说明

本文我是需要生成一个pdf

引入的Maven

复制代码
<dependency>
    <groupId>com.itextpdf</groupId>
    <artifactId>itextpdf</artifactId>
    <version>5.5.13.1</version>
</dependency>

代码部分

复制代码
      BaseFont bfChinese1 = BaseFont.createFont("/fonts/SourceHanSerifSC-VF.otf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
        //字体
        Font titleChi1nese = new Font(bfChinese1, 18, Font.BOLD, BaseColor.BLACK);
        Font titleChin1ese3 = new Font(bfChinese1, 12, Font.BOLD,BaseColor.BLACK);
        Font secondtitl1eChinese = new Font(bfChinese1, 10, Font.NORMAL,BaseColor.BLACK);

        BaseFont bfChinese = BaseFont.createFont("/fonts/simsun.ttc,1", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
        log.info("Font loaded successfully from: " +bfChinese );
        //字体
        Font titleChinese = new Font(bfChinese, 18, Font.BOLD, BaseColor.BLACK);
        Font titleChinese3 = new Font(bfChinese, 12, Font.BOLD,BaseColor.BLACK);
        Font secondtitleChinese = new Font(bfChinese, 10, Font.NORMAL,BaseColor.BLACK);

此时这样是不行的,不管怎么操作都会出现上边的那两问题

解决

pom.xml文件下边。build里边加上

复制代码
<resources>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
            <excludes>
                <exclude>fonts/*</exclude>
            </excludes>
        </resource>
        <resource>
            <directory>src/main/resources</directory>
            <filtering>false</filtering>
            <includes>
                <include>fonts/*</include>
            </includes>
        </resource>
</resources>

问题就这么解决了。还有就是字体文件不要直接放在resource下边,有可能会出错

相关推荐
一壶浊酒..16 小时前
Scrape Webpack练习
开发语言·javascript·webpack
ZJH__GO16 小时前
网络编程v4pro--实现聊天室文件传输功能
java·服务器·网络·计算机网络
程序员黑豆16 小时前
Windows 系统 Java 环境变量配置全攻略:解决“不是内部或外部命令”
java·前端·ai编程
命运之光17 小时前
【C语言完整代码】就诊信息管理系统
java·c语言·开发语言
命运之光17 小时前
【C语言完整代码】图书管理系统:图书馆场景下的增删改查实战
c语言·开发语言
猿长大人17 小时前
C# | Serilog 新手入门
开发语言·c#·.net·log
marvelyu18 小时前
每天10分钟学会OceanBase系列(Day 20):跨机房容灾实战——构建多数据中心高可用架构
java·大数据·数据库
在世修行19 小时前
从零打造 C# 工业视觉检测系统(七):串口通信 SerialPort 封装与开发
开发语言·c#·modbus rtu·rs232/rs485
AI人工智能+电脑小能手19 小时前
大白话说Java设计模式-04-工厂方法模式(业务实战篇)
java·设计模式·工厂方法模式·架构设计·代码解耦
BUG指挥官19 小时前
Sa-Token和Spring Security对比
java·后端·spring