HTML JPG PDF SVG PPT
Product Family
GIF

Convert PPS to GIF in Python

Powerful PowerPoint Python library for converting PPS to GIF

Convert PPS to GIF in Python

Convert PPS files to animated GIFs programmatically with Aspose.Slides for Python via .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 . The library also supports many other output formats.

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

Console/Terminal

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.

  1. Load the PPS file into a Presentation instance.

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

  3. 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 .
  • Python 3.5 or later.
  • Aspose.Slides for Python via .NET installed in your environment.
 

Convert PPS to GIF in 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 to see the PPS-to-GIF conversion process in action.

Other Supported Conversions

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

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