I am trying to convert a powerpoint slide to pdf file using Aspose Slides. I have noticed that the converted pdf file doesn't have the same quality for the embedded images in the powerpoint slide. I have used the below code for the conversion. I have tried different settings with pdfOptions object still have no luck. Also I could see some texts in the background which was not there in the actual presentaction slide. I am using a trial version of the assembly. Could you please help me in resolving this.
PresentationEx pres = new PresentationEx(filePath);
Aspose.Slides.Export.PdfOptions opts = new Aspose.Slides.Export.PdfOptions();
opts.JpegQuality = 100;
opts.SaveMetafilesAsPng = true;
opts.TextCompression = Aspose.Slides.Export.PdfTextCompression.None;
opts.Compliance = Aspose.Slides.Export.PdfCompliance.Pdf15;
pres.Save("myFile.pdf", Aspose.Slides.Export.SaveFormat.Pdf,opts);