How to Convert PDF to Presentation using C#

This simple how-to-topic is about how to convert PDF to Presentation using C# by following the detailed configuration steps to verify the working sample code. You can import PDF in PowerPoint using C# by following a very simple API interface and application can be used inside any of .NET supported environment including Windows, macOS and Linux.

Steps to Import PDF in PowerPoint using C#

  1. Configure your application project to install Aspose.Slides for .NET using the NuGet package manager
  2. Create an empty presentation using the Presentation class object to convert PDF to presentation
  3. Load the PDF from the disk and add to presentation slides collection using AddFromPdf method
  4. Using the Save method, convert PDF to PowerPoint using C#

By following the stated steps in C# PDF to Presentation converter application is developed where the process commences by creating an empty presentation using an instance of Presentation class. Then, by using AddFromPdf method which is exposed by SlideCollection class, add the PDF in slides by setting source PDF file path. Finally, the Save method will convert PDF to PPTX and save it on the disk.

Code to Convert PDF to Presentation using C#

The above example is also useful to convert PDF to PPT using C# where you will have to choose different SaveFormat enumerator inside the Save method. The AddFromPdf method also provide the overload to load the PDF from memory stream as well and for every page inside the PDF, a new slide will be created inside the presentation. The API allows you to add multiple PDF files inside the presentation slides collection.

In this tutorial, we learnt that in order to add PDF to Presentation C# based API can be used without any dependency on MS PowerPoint. If you are interested in converting the presentation to PDF, refer to the article on how to convert PPT to PDF using C#.

 English