Browse Source

fix 新增中文字体显示

DYH2020 2 năm trước cách đây
mục cha
commit
97f61b8559
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/main/java/com/ywt/mg/core/utils/GeneratePdf.java

+ 1 - 1
src/main/java/com/ywt/mg/core/utils/GeneratePdf.java

@@ -98,7 +98,7 @@ public class GeneratePdf {
             // 使用宋体显示中文
             String songtiFontName = "./config_file/simsun.ttc";
             songtiFontName += ",1";
-            Font songtiFont = new Font(BaseFont.createFont(songtiFontName, BaseFont.IDENTITY_H, BaseFont.EMBEDDED));//中文简体
+            Font songtiFont = new Font(BaseFont.createFont(songtiFontName, BaseFont.IDENTITY_H, BaseFont.EMBEDDED));
             Phrase phrase = new Phrase(content, songtiFont);
             doc.add(phrase);
             for (String imagePath : imagePathList) {