Hi,
While trying to convert PPTX to HTML using below code, we are seeing some additional images. Can you please help on this? Attaching PPTX and HTML (included in .zip) files. We are not seeing this issue while converting PPTX to PDF/PNG.
com.aspose.slides.License license = new com.aspose.slides.License();
license.setLicense(new java.io.FileInputStream(“Aspose.Slides.lic”));
String in1 = “C://a//Sample.pptx”;
LoadOptions l = new LoadOptions();
l.setLoadFormat( LoadFormat.Pptx);
Presentation pres1 = new Presentation( in1, l);
String fname = “C://a//Sample.html”;
pres1.save(fname, SaveFormat.Html);