Convert PPTX Presentations to PPS in Python

Create a binary PowerPoint slide show from a PPTX file with Aspose.Slides for Python via Java.

Convert PPTX to PPS in Python

Aspose.Slides for Python via Java can load a PPTX presentation and save it as a binary PowerPoint 97-2003 PPS slide show. A PPS file is designed to open directly in slide show mode in compatible applications. The conversion does not require Microsoft PowerPoint.

Convert PPTX to PPS using Python

Create a Presentation from the PPTX file and call save with SaveFormat.Pps to create the PPS slide show.

Python code for converting PPTX to PPS

presentation = Presentation("presentation.pptx")
try:
    presentation.save("presentation.pps", SaveFormat.Pps)
finally:
    presentation.dispose()

How to convert PPTX to PPS in Python

Follow these steps to convert a PPTX presentation to a binary PowerPoint slide show.

  1. Install Aspose.Slides for Python via Java .

  2. Configure the package and start the Java Virtual Machine in your application.

  3. Open the source PPTX file with Presentation.

  4. Call save with SaveFormat.Pps to write the PPS slide show.