It is currently Sun Apr 27, 2025 9:37 am
PresentationMLPackage pMLPackage =
(PresentationMLPackage)OpcPackage.load(new java.io.File(inputfilepath));
pMLPackage.save(new File(System.getProperty("user.dir") + "/Outputs/BA_Multiple_INS_OUT.pptx"));
WordprocessingMLPackage.load
private WordprocessingMLPackage load(File f) throws Docx4JException {
LoadFromZipFile.setConserveMemory(true);
LoadFromZipFile loader = new LoadFromZipFile();
return (WordprocessingMLPackage) loader.get(f);
}
We're developing an Eclipse application that allows exporting large EMF models to Word format using docx4j. The data can contain many rendered graphs in PNG format, and the Word template can be pretty large, with multiple repeat and conditional sections ...
Total posts 10160 • Total topics 2859 • Total members 2089