# Convert PPSX to PDF in Python

> Convert PPSX files to PDF documents in Python with Aspose.Slides for Python via Java.

Source: https://products.aspose.com/slides/python-java/conversion/ppsx-to-pdf/
Updated: 2026-07-22



## Convert PPSX to PDF in Python

[Aspose.Slides for Python via Java](/slides/python-java/) can convert a PowerPoint Slide Show (`.ppsx`) to a PDF document without Microsoft PowerPoint. PDF output is convenient for sharing, printing, and archiving because each slide is rendered as a fixed-layout page.

For a straightforward conversion, load the PPSX file with `Presentation` and call `save` with `SaveFormat.Pdf`. Animations, transitions, and other interactive slide show behavior do not remain interactive in the PDF.

## How to Convert PPSX to PDF in Python

Load the source PPSX file into a `Presentation`, then save it with `SaveFormat.Pdf`.

### Python code for converting PPSX to PDF

```python
presentation = Presentation("presentation.ppsx")
try:
    presentation.save("presentation.pdf", SaveFormat.Pdf)
finally:
    presentation.dispose()
```

## Steps to Convert PPSX to PDF in Python

The conversion loads the PowerPoint slide show and renders its slides as pages in a PDF document.

Install [Aspose.Slides for Python via Java](/slides/python-java/).

Configure JPype and make the Aspose.Slides package available to your Python project.

Create a `Presentation` from the source `.ppsx` file.

Call `save` with `SaveFormat.Pdf` and a `.pdf` output path.

## Convert PPSX to Other Supported Formats

- [PPSX TO PPTX](/slides/python-java/conversion/ppsx-to-pptx/)
- [PPSX TO PPT](/slides/python-java/conversion/ppsx-to-ppt/)
- [PPSX TO HTML](/slides/python-java/conversion/ppsx-to-html/)
- [PPSX TO PNG](/slides/python-java/conversion/ppsx-to-png/)
- [PPSX TO BMP](/slides/python-java/conversion/ppsx-to-bmp/)
- [PPSX TO JPG](/slides/python-java/conversion/ppsx-to-jpg/)
- [PPSX TO FODP](/slides/python-java/conversion/ppsx-to-fodp/)
- [PPSX TO GIF](/slides/python-java/conversion/ppsx-to-gif/)
- [PPSX TO ODP](/slides/python-java/conversion/ppsx-to-odp/)
- [PPSX TO OTP](/slides/python-java/conversion/ppsx-to-otp/)
- [PPSX TO POT](/slides/python-java/conversion/ppsx-to-pot/)
- [PPSX TO POTM](/slides/python-java/conversion/ppsx-to-potm/)
- [PPSX TO POTX](/slides/python-java/conversion/ppsx-to-potx/)
- [PPSX TO PPS](/slides/python-java/conversion/ppsx-to-pps/)
- [PPSX TO PPSM](/slides/python-java/conversion/ppsx-to-ppsm/)
- [PPSX TO PPTM](/slides/python-java/conversion/ppsx-to-pptm/)
- [PPSX TO SVG](/slides/python-java/conversion/ppsx-to-svg/)
- [PPSX TO TIFF](/slides/python-java/conversion/ppsx-to-tiff/)
