# Convert PPSM to HTML in PHP

> Convert a PowerPoint PPSM slide show to HTML5 in PHP with Aspose.Slides for PHP via Java.

Source: https://products.aspose.com/slides/php-java/conversion/ppsm-to-html/
Updated: 2026-08-11



## Convert PPSM to HTML in PHP

[*Aspose.Slides for PHP via Java*](/slides/php-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](https://packagist.org/packages/aspose/slides) using the following command:

### Console/Terminal

```console
> 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.

Load the PPSM file with the `Presentation` class.

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

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.
1. Install JRE 8 and set the `JAVA_HOME` environment variable to the installed JRE directory.
1. Install and configure Apache Tomcat with PHP/Java Bridge as described in the [installation guide](https://docs.aspose.com/slides/php-java/installation/).

### This sample code shows PPSM to HTML PHP Conversion

```php
$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.

## Other Supported Conversions

- [PPSM TO BMP](/slides/php-java/conversion/ppsm-to-bmp/) — Bitmap Image
- [PPSM TO FODP](/slides/php-java/conversion/ppsm-to-fodp/) — Flat OpenDocument Presentation
- [PPSM TO GIF](/slides/php-java/conversion/ppsm-to-gif/) — Graphics Interchange Format
- [PPSM TO JPG](/slides/php-java/conversion/ppsm-to-jpg/) — JPEG Image
- [PPSM TO ODP](/slides/php-java/conversion/ppsm-to-odp/) — OpenDocument Presentation
- [PPSM TO OTP](/slides/php-java/conversion/ppsm-to-otp/) — OpenDocument Presentation Template
- [PPSM TO PDF](/slides/php-java/conversion/ppsm-to-pdf/) — Portable Document Format
- [PPSM TO PNG](/slides/php-java/conversion/ppsm-to-png/) — Portable Network Graphics
- [PPSM TO POT](/slides/php-java/conversion/ppsm-to-pot/) — PowerPoint 97-2003 Template
- [PPSM TO POTM](/slides/php-java/conversion/ppsm-to-potm/) — PowerPoint Macro-Enabled Template
- [PPSM TO POTX](/slides/php-java/conversion/ppsm-to-potx/) — PowerPoint Open XML Template
- [PPSM TO PPS](/slides/php-java/conversion/ppsm-to-pps/) — PowerPoint 97-2003 Slide Show
- [PPSM TO PPSX](/slides/php-java/conversion/ppsm-to-ppsx/) — PowerPoint Open XML Slide Show
- [PPSM TO PPT](/slides/php-java/conversion/ppsm-to-ppt/) — PowerPoint 97-2003 Presentation
- [PPSM TO PPTM](/slides/php-java/conversion/ppsm-to-pptm/) — PowerPoint Macro-Enabled Presentation
- [PPSM TO PPTX](/slides/php-java/conversion/ppsm-to-pptx/) — PowerPoint Open XML Presentation
- [PPSM TO SVG](/slides/php-java/conversion/ppsm-to-svg/) — Scalable Vector Graphics
- [PPSM TO SWF](/slides/php-java/conversion/ppsm-to-swf/) — Small Web Format
- [PPSM TO TIFF](/slides/php-java/conversion/ppsm-to-tiff/) — Tagged Image File Format
- [PPSM TO XPS](/slides/php-java/conversion/ppsm-to-xps/) — XML Paper Specification
