I’m trying to use Aspose.Slides in my GWT project for this I have placed this aspose-slides-18.9-jdk16.jar file under WEB-INF/lib and i tried the below given code but I cannot compile my project and ppt file is not created
Presentation srcPres = new Presentation("F:\\AsposeSlides\\Src1.pptx");
Presentation destPres = new Presentation("F:\\AsposeSlides\\Src2.pptx");
ISlideCollection slds = destPres.getSlides();
slds.insertClone(2, srcPres.getSlides().get_Item(2));
destPres.save("F:\\AsposeSlides\\outputPres.pptx", SaveFormat.Pptx);
Can anyone suggest me an idea to resolve this issue ?