I have a "Word-created" simple docx file and trying to convert it to PDF with below codes in my function :
- Code: Select all
........
........
wordMLPackage = WordprocessingMLPackage.load(new java.io.File("D:\\Abc.docx"));
Mapper fontMapper = new IdentityPlusMapper();
fontMapper.getFontMappings().put("Times New Roman", PhysicalFonts.getPhysicalFonts().get("Arial Unicode MS"));
wordMLPackage.setFontMapper(fontMapper);
FOSettings foSettings = Docx4J.createFOSettings();
foSettings.setFoDumpFile(new java.io.File("D:\\Abc.fo"));
foSettings.setWmlPackage(wordMLPackage);
foSettings.setApacheFopMime(FOSettings.INTERNAL_FO_MIME);
String pdfOutFileName = "D:\\Abc.pdf";
OutputStream os = new java.io.FileOutputStream(pdfOutFileName);
Docx4J.toFO(foSettings, os, Docx4J.FLAG_NONE);
return pdfOutFileName;
And I have below DocX4j libraries include in my class path ...