Convert PPS Slide Shows to PPTX in Python
Save a legacy PowerPoint slide show as an editable Open XML presentation with Aspose.Slides for Python via Java.
Convert PPS to PPTX in Python
Aspose.Slides for Python via Java can load a legacy binary PowerPoint slide show (PPS) and save it as an editable, macro-free Open XML presentation (PPTX). The conversion changes the default document behavior from slide show playback to presentation editing. Microsoft PowerPoint is not required.
Convert PPS to PPTX using Python
Create a Presentation from the PPS file, then call save with SaveFormat.Pptx.
Python code for converting PPS to PPTX
presentation = Presentation("presentation.pps")
try:
presentation.save("presentation.pptx", SaveFormat.Pptx)
finally:
presentation.dispose()
How to convert PPS to PPTX in Python
Follow these steps to convert a PowerPoint slide show to an editable PPTX presentation.
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.Pptxto create the PPTX presentation.
Convert PPS to Other Supported Formats
You can also convert PPS slide shows to other supported file formats.