How to convert PDF to PowerPoint PPTX Presentation in C# .NET Framework
1 min readFeb 24, 2020
Converting a PDF into a PowerPoint is going to be a piece of cake.
We need to install our API client before we can do anything else. This just means running this command in the console of Package Manager.
Install-Package Cloudmersive.APIClient.NET.DocumentAndDataConvert -Version 2.2.0
With that done we can invoke the function ConvertDocumentPdfToPptx, demonstrated here.
using System;using System.Diagnostics;using Cloudmersive.APIClient.NET.DocumentAndDataConvert.Api;using Cloudmersive.APIClient.NET.DocumentAndDataConvert.Client;using Cloudmersive.APIClient.NET.DocumentAndDataConvert.Model;namespace Example{public class ConvertDocumentPdfToPptxExample{public void main(){// Configure API key authorization: ApikeyConfiguration.Default.AddApiKey("Apikey", "YOUR_API_KEY");// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed// Configuration.Default.AddApiKeyPrefix("Apikey", "Bearer");var apiInstance = new ConvertDocumentApi();var inputFile = new System.IO.Stream(); // System.IO.Stream | Input file to perform the operation on.try{// Convert PDF to PowerPoint PPTX Presentationbyte[] result = apiInstance.ConvertDocumentPdfToPptx(inputFile);Debug.WriteLine(result);}catch (Exception e){Debug.Print("Exception when calling ConvertDocumentApi.ConvertDocumentPdfToPptx: " + e.Message );}}}}
And that’s really all there is to it. If this API made your life easier, you’re going to want to see what else our APIs have to offer. Everything from optical character recognition to facial recognition.