# Convert ODP to PPS Using C++

> C++ conversion code for ODP to PPS. Use the example code for batch ODP to PPS conversion in C++ applications.

Source: https://products.aspose.com/slides/cpp/conversion/odp-to-pps/
Updated: 2026-08-11



## Convert ODP to PPS Using C++

To convert ODP to PPS, use [Aspose.Slides for C++](/slides/cpp/), a presentation processing API for C++ applications. You can download the latest version directly from [NuGet](https://www.nuget.org/packages/Aspose.Slides.Cpp/), search for **Aspose.Slides.Cpp**, and install it. You may also use the following command from the Package Manager Console.

### Command

```powershell
PM> Install-Package Aspose.Slides.Cpp
```

## How to Convert ODP to PPS via C++

 C++ developers can convert an ODP file to PPS in just a few lines of code.

1.  Create a `Presentation` instance from the source ODP file.
1.  Call the `Save` method and pass the output PPS file path with `SaveFormat::Pps`.

## System Requirements

 Before running the C++ conversion example code, make sure that you have the following prerequisites.

- Microsoft Windows, Linux, macOS, or another compatible OS with the supported C++ runtime.
- Aspose.Slides for C++ library referenced in your project.

### ODP to PPS C++ Conversion Source Code

```cpp
auto presentation = MakeObject<Presentation>(u"presentation.odp");
presentation->Save(u"document.pps", SaveFormat::Pps);
presentation->Dispose();
```

## Other Supported Conversions

- [ODP TO BMP](/slides/cpp/conversion/odp-to-bmp/) — Bitmap Image
- [ODP TO EMF](/slides/cpp/conversion/odp-to-emf/) — Enhanced Metafile Format
- [ODP TO GIF](/slides/cpp/conversion/odp-to-gif/) — Graphics Interchange Format
- [ODP TO HTML](/slides/cpp/conversion/odp-to-html/) — Hypertext Markup Language
- [ODP TO JPEG](/slides/cpp/conversion/odp-to-jpeg/) — JPEG Image
- [ODP TO OTP](/slides/cpp/conversion/odp-to-otp/) — OpenDocument Presentation Template
- [ODP TO PDF](/slides/cpp/conversion/odp-to-pdf/) — Portable Document Format
- [ODP TO PNG](/slides/cpp/conversion/odp-to-png/) — Portable Network Graphics
- [ODP TO POT](/slides/cpp/conversion/odp-to-pot/) — PowerPoint 97–2003 Template
- [ODP TO POTM](/slides/cpp/conversion/odp-to-potm/) — PowerPoint Macro-Enabled Template
- [ODP TO POTX](/slides/cpp/conversion/odp-to-potx/) — PowerPoint Template
- [ODP TO PPSM](/slides/cpp/conversion/odp-to-ppsm/) — Macro-enabled Slide Show
- [ODP TO PPSX](/slides/cpp/conversion/odp-to-ppsx/) — PowerPoint Slide Show
- [ODP TO PPT](/slides/cpp/conversion/odp-to-ppt/) — PowerPoint 97-2003 Presentation
- [ODP TO PPTM](/slides/cpp/conversion/odp-to-pptm/) — Macro-enabled Presentation File
- [ODP TO PPTX](/slides/cpp/conversion/odp-to-pptx/) — Open XML Presentation Format
- [ODP TO SVG](/slides/cpp/conversion/odp-to-svg/) — Scalable Vector Graphics
- [ODP TO TIFF](/slides/cpp/conversion/odp-to-tiff/) — Tagged Image File Format
- [ODP TO XML](/slides/cpp/conversion/odp-to-xml/) — PowerPoint XML Presentation
- [ODP TO XPS](/slides/cpp/conversion/odp-to-xps/) — XML Paper Specification
