01 | import com.itextpdf.text.BaseColor; |
02 | import com.itextpdf.text.Font; |
03 | import com.itextpdf.text.pdf.BaseFont; |
04 | import com.itextpdf.tool.xml.XMLWorkerFontProvider; |
05 | import org.springframework.core.io.ClassPathResource; |
06 |
07 | /*** |
08 | * 工具类 |
09 | */ |
10 | public class DefineFontProvider extends XMLWorkerFontProvider { |
11 | @Override |
12 | public Font getFont( final String fontname, final String encoding, final boolean embedded, final float size, |
13 | final int style, final BaseColor color) { |
14 | BaseFont bf = null ; |
15 | try { |
16 | //msyh.ttf 是微软雅黑字体, |
17 | ClassPathResource resource = new ClassPathResource( "msyh.ttf" ); |
18 | bf = BaseFont.createFont(resource.getPath(), BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED); |
19 | } catch (Exception e) { |
20 | e.printStackTrace(); |
21 | } |
22 | Font font = new Font(bf, size, style, color); |
23 | font.setColor(color); |
24 | return font; |
25 | } |
26 | } |


Jacko01 LV8
3月20日
liuyinwan
1月14日
暂无贡献等级
源蝈蝈
2024年12月28日
暂无贡献等级
3334004690 LV10
2024年6月24日
19950118
2024年4月19日
暂无贡献等级
zhos0212 LV19
2024年3月29日
467277 LV13
2024年3月26日
studengaaa
2024年3月17日
暂无贡献等级
a1325922140 LV1
2024年2月19日
wbbhappy LV13
2024年1月13日