Hello,
I am using Aspose.slides v17.3 to generate PDF/PNG of a slide. 3-D shape effects have been applied on the shapes in the slide, but the shape effects are not rendered in the PDF/PNG output.
Following code has been used to generate the PDF:
Presentation presentation = new Presentation("test.pptx");
int index[] = {1};
presentation.save("response.pdf", index, SaveFormat.Pdf);
Following code has been used to generate the PNG:
Presentation presentation = new Presentation("test.pptx");
ISlide slide = presentation.getSlides().get_Item(0);
BufferedImage sldImg = slide.getThumbnail(1, 1);
File file = new File("response.png");
ImageIO.write(sldImg, "png", file);
Can you please analyse this issue.
Thanks,
Neha