# Convert PPSM to PPS in PHP

> Sample PHP code for converting PPSM presentations to PPS files with Aspose.Slides for PHP via Java.

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



## Convert PPSM to PPS in PHP

Need to convert PPSM files to PPS programmatically? With [*Aspose.Slides for PHP via Java*](/slides/php-java/), you can export a PPSM presentation as a PPS file with a few lines of PHP code.

Aspose.Slides provides a straightforward presentation-processing API for PPSM-to-PPS conversion. You can also test presentation conversions in your [browser](https://products.aspose.app/slides/conversion) or export PPSM files to many other supported formats.

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 PPS in PHP

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

Load the PPSM file into a `Presentation` instance.

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

The presentation is written to the specified PPS file.

## System Requirements

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

1. Install PHP 7, add the PHP directory to the system `PATH`, and set `allow_url_include` to `On` in `php.ini`.
1. Install JRE 8 and set the `JAVA_HOME` environment variable to the installed JRE directory.
1. Install Apache Tomcat 8.0 as described in the [installation guide](https://docs.aspose.com/slides/php-java/installation/).

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

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

## Save PPSM as PPS in PHP

Use the free app to see a demonstration of the PPSM-to-PPS 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/) — OpenDocument Flat XML Presentation
- [PPSM TO GIF](/slides/php-java/conversion/ppsm-to-gif/) — Graphics Interchange Format
- [PPSM TO HTML](/slides/php-java/conversion/ppsm-to-html/) — Hypertext Markup Language
- [PPSM TO JPG](/slides/php-java/conversion/ppsm-to-jpg/) — JPEG Image
- [PPSM TO ODP](/slides/php-java/conversion/ppsm-to-odp/) — OpenDocument Presentation Format
- [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/) — Microsoft PowerPoint Template
- [PPSM TO POTM](/slides/php-java/conversion/ppsm-to-potm/) — Macro-Enabled PowerPoint Template
- [PPSM TO POTX](/slides/php-java/conversion/ppsm-to-potx/) — Open XML PowerPoint Template
- [PPSM TO PPSX](/slides/php-java/conversion/ppsm-to-ppsx/) — Open XML PowerPoint Slide Show
- [PPSM TO PPT](/slides/php-java/conversion/ppsm-to-ppt/) — Microsoft PowerPoint 97-2003 Presentation
- [PPSM TO PPTM](/slides/php-java/conversion/ppsm-to-pptm/) — Macro-Enabled PowerPoint Presentation
- [PPSM TO PPTX](/slides/php-java/conversion/ppsm-to-pptx/) — Open XML PowerPoint Presentation
- [PPSM TO SVG](/slides/php-java/conversion/ppsm-to-svg/) — Scalable Vector Graphics
- [PPSM TO SWF](/slides/php-java/conversion/ppsm-to-swf/) — Shockwave Flash 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
