Converting Presentation to PDF using Aspose.Slides

Aspose.Slides - Conversion of Presentation to PDF

Converting presentation to PDF

Java

 //Instantiate a Presentation object that represents a presentation file

Presentation pres = new Presentation("presentation.pptx");

//Saving the presentation to PDF document with default options

pres.save("AsposeConvert.pdf", SaveFormat.Pdf);

Download Running Code

Download Sample Code