Convert PowerPoint to PDF in C#
PowerPoint to PDF
     Nutrient .NET SDK (formerly GdPicture.NET) offers Office-to-PDF conversion that relies entirely on its own technology. The conversion doesn’t rely on third-party tools such as LibreOffice.
This article explains how to convert PowerPoint files such as PPT or PPTX to PDF.
Creating a PDF from a PowerPoint file
To create a PDF from a PowerPoint file, follow the steps below:
- Create a 
GdPictureDocumentConverterobject. - Load the source document by passing its path to the 
LoadFromFilemethod. Recommended: Specify the source document format with a member of theDocumentFormatenumeration. - Save the output in a new PDF document with the 
SaveAsPDFmethod. 
The example below creates a PDF document from a PowerPoint file:
using GdPictureDocumentConverter gdpictureDocumentConverter = new GdPictureDocumentConverter();// Load the source document.gdpictureDocumentConverter.LoadFromFile(@"C:\temp\source.pptx", GdPicture14.DocumentFormat.DocumentFormatPPTX);// Save the output in a new PDF document.gdpictureDocumentConverter.SaveAsPDF(@"C:\temp\output.pdf");Using gdpictureDocumentConverter As GdPictureDocumentConverter = New GdPictureDocumentConverter()    ' Load the source document.    gdpictureDocumentConverter.LoadFromFile("C:\temp\source.pptx", GdPicture14.DocumentFormat.DocumentFormatPPTX)    ' Save the output in a new PDF document.    gdpictureDocumentConverter.SaveAsPDF("C:\temp\output.pdf")End UsingUsed methods
    Related topics