Convert PPS Slide Shows to PPSX in Python
Save a legacy PowerPoint slide show in the Open XML PPSX format with Aspose.Slides for Python via Java.
Convert PPS to PPSX in Python
Aspose.Slides for Python via Java can load a legacy binary PowerPoint slide show (PPS) and save it as a macro-free Open XML slide show (PPSX). The converted file retains the slide show document type and opens directly in slide show mode in compatible applications. Microsoft PowerPoint is not required.
Convert PPS to PPSX using Python
Create a Presentation from the PPS file, then call save with SaveFormat.Ppsx.
Python code for converting PPS to PPSX
presentation = Presentation("presentation.pps")
try:
presentation.save("presentation.ppsx", SaveFormat.Ppsx)
finally:
presentation.dispose()
How to convert PPS to PPSX in Python
Follow these steps to convert a legacy PowerPoint slide show to the Open XML PPSX format.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPS file with
Presentation.Call
savewithSaveFormat.Ppsxto create the PPSX slide show.
Convert PPS to Other Supported Formats
You can also convert PPS slide shows to other supported file formats.