HTML JPG PDF SVG PPT
Product Family
GIF

Convert PPSM to GIF in PHP

Export a PowerPoint PPSM slide show as an animated GIF

Convert PPSM to GIF in PHP

Aspose.Slides for PHP via Java can load a PowerPoint PPSM slide show and export it as an animated GIF without Microsoft PowerPoint.

Call save with SaveFormat::Gif to create one animated GIF using the default frame timing settings.

You can install the library from Composer using the following command:

Console/Terminal

> composer require aspose/slides

This sample code shows PPSM to GIF PHP Conversion

$presentation = new Presentation("input.ppsm");
try {
    $presentation->save("output.gif", SaveFormat::Gif);
} finally {
    $presentation->dispose();
}
 

How to Convert PPSM to GIF in PHP

These are the steps to convert a PPSM file to GIF using PHP.

  1. Load the PPSM file with the Presentation class.

  2. Call save with the output file path and SaveFormat::Gif.

  3. The animated GIF file is written to the specified path.

System Requirements

Before running the PHP conversion example, make sure that you have the following prerequisites.

  1. Install PHP 7 or later, add the PHP directory to the system PATH, and set allow_url_include to On in the php.ini file.
  2. Install JRE 8 and set the JAVA_HOME environment variable to the installed JRE directory.
  3. Install and configure Apache Tomcat with PHP/Java Bridge as described in the installation guide .

Save PPSM as GIF in PHP

Use the free app to see a demonstration of the PPSM to GIF conversion process.

Free App to Convert PPSM to GIF

Try our free Conversion app

Other Supported Conversions

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

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