Hello!
At the moment I am developing an application which should merge different pptx files (each containing one single slide) into one big presentation file.
As I am new to docx4j/pptx4j and the OpenXML concept, I can just guess what is wrong about my code:
File presentations = new File("C:/Temp/pptx").listFiles(); // pptx-files from source folder
File targetFile = new File("C:/Temp/merged.pptx"); // target file containing all slides
PresentationMLPackage targetPackage = PresentationMLPackage.createPackage();
MainPresentationPart pp = (MainPresentationPart) ...