HTML JPG PDF XML PPTX
  Product Family
PDF

Convert PPTX to PDF in C#

Convert PPTX files to PDF in C# using server-side Aspose.Slides APIs.

Convert PPTX to PDF Using C#

Use Aspose.Slides for .NET to load a PPTX presentation and save it as a PDF file. Install the package from NuGet or run the following command in the Package Manager Console.

Package Manager Console Command

PM> Install-Package Aspose.Slides.NET

How to Convert PPTX to PDF via C#

.NET developers can load and convert PPTX files to PDF in a few lines of code.

  1. Load the PPTX file with a Presentation object.

  2. Call the Save method with the output file path and SaveFormat.Pdf.

  3. Use the output PDF file at the specified path.

System Requirements

Before running the .NET conversion sample code, make sure that you have the following prerequisites.

  • A supported operating system with .NET or Mono installed.
  • A development environment such as Microsoft Visual Studio.
  • Aspose.Slides for .NET referenced in your project.
 

This sample code shows PPTX to PDF C# conversion

using var presentation = new Presentation("template.pptx");
presentation.Save("output.pdf", SaveFormat.Pdf);
 

Free App to Convert PPTX to PDF

Try our free app to convert PPTX to PDF

Other Supported Conversions

You can also convert PPTX into many other file formats including a few listed below.

PPTX TO BMP (Bitmap Image)
PPTX TO EMF (Enhanced Metafile Format)
PPTX TO GIF (Graphics Interchange Format)
PPTX TO HTML (Hypertext Markup Language)
PPTX TO JPEG (JPEG Image)
PPTX TO ODP (OpenDocument Presentation Format)
PPTX TO OTP (OpenDocument Presentation Template)
PPTX TO PNG (Portable Network Graphics)
PPTX TO POT (PowerPoint Template Files)
PPTX TO POTM (PowerPoint Macro-Enabled Template)
PPTX TO POTX (PowerPoint Open XML Template)
PPTX TO PPS (PowerPoint Slide Show)
PPTX TO PPSM (Macro-Enabled Slide Show)
PPTX TO PPSX (PowerPoint Open XML Slide Show)
PPTX TO PPT (PowerPoint 97-2003 Presentation)
PPTX TO PPTM (Macro-Enabled Presentation)
PPTX TO SVG (Scalable Vector Graphics)
PPTX TO SWF (SWF Format)
PPTX TO TIFF (Tagged Image File Format)
PPTX TO VIDEO (Video Format)
PPTX TO WORD (Word Processing Document)
PPTX TO XPS (XML Paper Specification)