Hi Aspose team,
I am using Aspose Slide 17.2 to convert a PowerPoint file to a SVG file.
And when I add text to the picture, the text position will be folded.
(Occurred on the second page of the original file.)
Here is the code I'm using:
public void svg() throws Exception {
createPPTLicense("src/test/config/etc/aspose.lic");
Presentation presentation = new Presentation(
"custom/input/pptx/test.pptx");
ISlideCollection slides = presentation.getSlides();
for (int p = 0; p < slides.size(); p++) {
ISlide slide = presentation.getSlides().get_Item(p);
OutputStream out = new FileOutputStream(new File(
"custom/output/pptx/aspose/test_p" + (p + 1) + ".svg"));
slide.writeAsSvg(out);
}
}
And I also uploaded the origin file and the wrong result tag.
Please help me figure it out what happend, thanks.