# Convert PPSX to GIF in Python

> Convert PPSX files to animated GIF images in Python with Aspose.Slides for Python via Java.

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



## Convert PPSX to GIF in Python

[**Aspose.Slides for Python via Java**](/slides/python-java/) can load a PowerPoint Slide Show (`.ppsx`) and export it as an animated GIF. The resulting file presents the slides as animation frames and can include slide transitions supported by the GIF exporter. Microsoft PowerPoint is not required.

## Convert PPSX to GIF using Python

Create a `Presentation` from the PPSX file and call `save` with `SaveFormat.Gif` to create an animated GIF.

### Python code for converting PPSX to animated GIF

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

## How to convert PPSX to animated GIF in Python

Follow these steps to export a PPSX file as a single animated GIF.

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

Configure the package and start the Java Virtual Machine in your application.

Open the source PPSX file with `Presentation`.

Call `save` with `SaveFormat.Gif` to generate the animated GIF.

## 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 PDF](/slides/python-java/conversion/ppsx-to-pdf/)
- [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 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/)
