HTML JPG PDF SVG PPT
Product Family
HTML

Convert PPSM to HTML in PHP

Export a PowerPoint PPSM slide show as an HTML5 document

Convert PPSM to HTML in PHP

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

Call save with SaveFormat::Html5 to create the HTML5 output.

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

Console/Terminal

> composer require aspose/slides

How to Convert PPSM to HTML in PHP

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

  1. Load the PPSM file with the Presentation class.

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

  3. The HTML 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 .
 

This sample code shows PPSM to HTML PHP Conversion

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

Save PPSM as HTML in PHP

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

Free App to Convert PPSM to HTML

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 GIF (Graphics Interchange Format)
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)