HTML JPG PDF SVG PPT
Product Family
PPSX

Convert PDF to PPSX in Python

Powerful PowerPoint Python library for converting PDF to PPSX

Convert PDF to PPSX in Python

Aspose.Slides for Python via .NET lets you convert PDF files to PPSX slide shows programmatically. The API imports each PDF page as a slide with SlideCollection.add_from_pdf, then writes the presentation in the PowerPoint Open XML slide show format.

The conversion requires no Microsoft PowerPoint, Adobe Acrobat, or other presentation software. You can also try the PDF-to-PPSX workflow in the online conversion app .

You can install the library from PyPI using the following pip command:

Console/Terminal

pip install aspose-slides

This sample code shows PDF to PPSX Python Conversion

with slides.Presentation() as presentation:
    presentation.slides.remove_at(0)
    presentation.slides.add_from_pdf("document.pdf")
    presentation.save("presentation.ppsx", slides.export.SaveFormat.PPSX)
 

How to Convert PDF to PPSX in Python

These are the steps to convert a PDF file to PPSX using Python.

  1. Create a Presentation and remove its default blank slide.

  2. Import the source PDF by using SlideCollection.add_from_pdf.

  3. Save the presentation by using Presentation.save with SaveFormat.PPSX.

System Requirements

Before running the Python conversion example, make sure your environment meets these requirements.

  • A supported Windows, Linux, or macOS environment; see System Requirements .
  • Python 3.5 or later.
  • Aspose.Slides for Python via .NET installed in your environment.

Save PDF as PPSX in Python

Use the free conversion app to see the PDF-to-PPSX workflow in your browser.

Other Supported Conversions

You can also convert PDF to many other file formats. See other supported conversions below:

PDF TO BMP (Bitmap Image)
PDF TO EMF (Enhanced Metafile Format)
PDF TO FODP (OpenDocument Flat XML Presentation)
PDF TO GIF (Graphics Interchange Format)
PDF TO HTML (Hypertext Markup Language)
PDF TO IMAGE (Raster Image)
PDF TO JPG (JPEG Image)
PDF TO ODP (OpenDocument Presentation)
PDF TO OTP (OpenDocument Presentation Template)
PDF TO PNG (Portable Network Graphics)
PDF TO POT (PowerPoint 97-2003 Template)
PDF TO POTM (Macro-Enabled PowerPoint Template)
PDF TO POTX (PowerPoint Open XML Template)
PDF TO PPS (PowerPoint 97-2003 Slide Show)
PDF TO PPSM (Macro-Enabled PowerPoint Slide Show)
PDF TO PPT (PowerPoint 97-2003 Presentation)
PDF TO PPTM (Macro-Enabled PowerPoint Presentation)
PDF TO PPTX (PowerPoint Open XML Presentation)
PDF TO SVG (Scalable Vector Graphics)
PDF TO SWF (Shockwave Flash Format)
PDF TO TIFF (Tagged Image File Format)
PDF TO XPS (XML Paper Specification)
PDF TO XML (PowerPoint XML Presentation)