# Convert PPS to TIFF in PHP

> Convert a PowerPoint PPS slide show to a multipage TIFF image in PHP with Aspose.Slides for PHP via Java.

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



## Convert PPS to TIFF in PHP

[*Aspose.Slides for PHP via Java*](/slides/php-java/) can load a PowerPoint PPS slide show and render it as a multipage TIFF image without Microsoft PowerPoint.

Call `save` with `SaveFormat::Tiff`; each slide becomes a page in the TIFF 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 PPS to TIFF in PHP

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

Load the PPS file with the `Presentation` class.

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

The TIFF 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 PPS to TIFF PHP Conversion

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

## Save PPS as TIFF in PHP

Use the free app to see a demonstration of the PPS to TIFF conversion process.

## Other Supported Conversions

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