# Convert PPS to GIF in Python

> Sample Python code for PPS-to-GIF conversion. Use the PowerPoint Python API to convert PPS files to animated GIFs in batch.

Source: https://products.aspose.com/slides/python-net/conversion/pps-to-gif/
Updated: 2026-08-11



## Convert PPS to GIF in Python

Convert PPS files to animated GIFs programmatically with [*Aspose.Slides for Python via .NET*](/slides/python-net/). A few lines of Python code are enough to load a PowerPoint Slide Show and export its slides to a single animated GIF.

Aspose.Slides for Python via .NET is a presentation-processing API that converts PPS files to animated GIFs quickly and with high fidelity. Try the conversion in the free [online app](https://products.aspose.app/slides/conversion). The library also supports many other output formats.

You can install the library from [PyPI](https://pypi.org/project/aspose-slides/) using the following pip command:

### Console/Terminal

```console
pip install aspose-slides
```

## How to Convert PPS to GIF in Python

These are the steps to convert a PPS file to GIF using Python.

Load the PPS file into a `Presentation` instance.

Call `Presentation.save` with the output file path and `SaveFormat.GIF`.

The animated GIF is written to the specified output path.

## 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](https://docs.aspose.com/slides/python-net/system-requirements/).
- Python 3.5 or later.
- Aspose.Slides for Python via .NET installed in your environment.

### Convert PPS to GIF in Python

```python
with slides.Presentation("presentation.pps") as presentation:
    presentation.save("presentation.gif", slides.export.SaveFormat.GIF)
```

## Save PPS as GIF in Python

Use the free [online conversion app](https://products.aspose.app/slides/conversion) to see the PPS-to-GIF conversion process in action.

## Other Supported Conversions

- [PPS TO BMP](/slides/python-net/conversion/pps-to-bmp/) — Bitmap Image
- [PPS TO EMF](/slides/python-net/conversion/pps-to-emf/) — Enhanced Metafile Format
- [PPS TO FODP](/slides/python-net/conversion/pps-to-fodp/) — OpenDocument Flat XML Presentation
- [PPS TO HTML](/slides/python-net/conversion/pps-to-html/) — Hypertext Markup Language
- [PPS TO JPG](/slides/python-net/conversion/pps-to-jpg/) — JPEG Image
- [PPS TO ODP](/slides/python-net/conversion/pps-to-odp/) — OpenDocument Presentation Format
- [PPS TO OTP](/slides/python-net/conversion/pps-to-otp/) — OpenDocument Presentation Template
- [PPS TO PDF](/slides/python-net/conversion/pps-to-pdf/) — Portable Document Format
- [PPS TO PNG](/slides/python-net/conversion/pps-to-png/) — Portable Network Graphics
- [PPS TO POT](/slides/python-net/conversion/pps-to-pot/) — PowerPoint 97–2003 Template
- [PPS TO POTM](/slides/python-net/conversion/pps-to-potm/) — PowerPoint Macro-Enabled Template
- [PPS TO POTX](/slides/python-net/conversion/pps-to-potx/) — PowerPoint Template
- [PPS TO PPSM](/slides/python-net/conversion/pps-to-ppsm/) — Macro-enabled Slide Show
- [PPS TO PPSX](/slides/python-net/conversion/pps-to-ppsx/) — PowerPoint Slide Show
- [PPS TO PPT](/slides/python-net/conversion/pps-to-ppt/) — PowerPoint 97-2003 Presentation
- [PPS TO PPTM](/slides/python-net/conversion/pps-to-pptm/) — Macro-enabled Presentation File
- [PPS TO PPTX](/slides/python-net/conversion/pps-to-pptx/) — PowerPoint Open XML Presentation
- [PPS TO SVG](/slides/python-net/conversion/pps-to-svg/) — Scalable Vector Graphics
- [PPS TO SWF](/slides/python-net/conversion/pps-to-swf/) — SWF Format
- [PPS TO TIFF](/slides/python-net/conversion/pps-to-tiff/) — Tagged Image File Format
- [PPS TO XPS](/slides/python-net/conversion/pps-to-xps/) — XML Paper Specification
