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.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPTX file with
Presentation.Call
savewithSaveFormat.Ppsto write the PPS slide show.
Convert PPTX to Other Supported Formats
You can also convert PPTX presentations to other supported file formats.