HTML
JPG
PDF
XML
ODP
PPSX
Convert ODP to PPSX in C#
Convert ODP files to PPSX in C# using server-side Aspose.Slides APIs.
Convert ODP to PPSX Using C#
Use Aspose.Slides for .NET to load an ODP presentation and save it as a PPSX file. Install the package from NuGet or use the following Package Manager Console command.
Package Manager Console Command
PM> Install-Package Aspose.Slides.NET
How to Convert ODP to PPSX via C#
.NET developers can easily load & convert ODP files to PPSX in just a few lines of code.
Load the ODP file with a
Presentationobject.Call the
Savemethod with the output file path andSaveFormat.Ppsx.Use the output PPSX file at the specified path.
System Requirements
Before you run the ODP to PPSX conversion C# code, make sure that your environment includes the following prerequisites:
- A supported operating system with .NET or Mono installed.
- Development environment like Microsoft Visual Studio.
- Aspose.Slides for .NET referenced in your project.
This sample code shows ODP to PPSX C# Conversion
using var presentation = new Presentation("template.odp");
presentation.Save("output.ppsx", SaveFormat.Ppsx);
Free App to Convert ODP to PPSX
Other Supported Conversions
You can also convert ODP into many other file formats including a few listed below.
ODP TO BMP (Bitmap Image)
ODP TO EMF (Enhanced Metafile Format)
ODP TO GIF (Graphics Interchange Format)
ODP TO HTML (Hypertext Markup Language)
ODP TO JPEG (JPEG Image)
ODP TO OTP (OpenDocument Presentation Template)
ODP TO PDF (Portable Document Format)
ODP TO PNG (Portable Network Graphics)
ODP TO POT (PowerPoint 97–2003 Template)
ODP TO POTM (PowerPoint Macro-Enabled Template)
ODP TO POTX (PowerPoint Template)
ODP TO PPS (PowerPoint Slide Show)
ODP TO PPSM (Macro-enabled Slide Show)
ODP TO PPT (PowerPoint 97-2003 Presentation)
ODP TO PPTM (Macro-enabled Presentation File)
ODP TO PPTX (Open XML Presentation Format)
ODP TO SVG (Scalable Vector Graphics)
ODP TO SWF (SWF Format)
ODP TO TIFF (Tagged Image File Format)
ODP TO XPS (XML Paper Specification)