Hi,
I ran into an issue while converting PDF to PPTX file. Images in the PDF are exporting correctly but have an additional shape around them. When I select an element in PPTX and type something, the image is overwritten. This behavior is not seen in DOCX conversions. Code and files are below.
var fileName = ""; // Enter the PDF filename
try (Document document = new Document("src/main/java/" + fileName + ".pdf")) {
document.save("saved.pptx", SaveFormat.Pptx);
}
Archive.zip (6.2 MB)