Convert ODP to PPTX in C#

Overview

This article explains the following topics.

C# ODP to PPTX Conversion

Aspose.Slides for .NET offers Presentation class that represents a presentation file. Presentation class can now also access ODP through Presentation constructor when the object is instantiated. The following example shows how to convert a ODP Presentation into PPTX Presentation.

Steps: Convert ODP to PPTX in C# | Steps: Convert ODP to PowerPoint in C#

// Open the ODP file
Presentation pres = new Presentation("AccessOpenDoc.odp");

// Saving the ODP presentation to PPTX format
pres.Save("AccessOpenDoc_out.pptx", SaveFormat.Pptx);

Live Example

You can visit Aspose.Slides Conversion web app, which is built with Aspose.Slides API. The app demonstrates how ODP to PPTX conversion can be implemented with Aspose.Slides API.