Hello,
I am using Aspose.slides v17.3 to generate SVG of a slide. The Word Art in a slide is missing in some cases and is not properly formatted in other cases.
Following code has been used to generate the SVG:
Presentation presentation = new Presentation("test.pptx");
ISlide slide = presentation.getSlides().get_Item(0);
OutputStream outputStream = new FileOutputStream("aspose response.svg");
slide.writeAsSvg(outputStream);
outputStream.close();
Can you please analyse this issue.
Thanks,
Neha