# Convert FODP to TIFF in PHP

> Sample PHP code for converting FODP presentations to multipage TIFF images with Aspose.Slides for PHP via Java.

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



## Convert FODP to TIFF in PHP

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

Aspose.Slides provides a straightforward presentation-processing API for FODP-to-TIFF conversion. You can also test presentation conversions in your [browser](https://products.aspose.app/slides/conversion) or export FODP 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 FODP to TIFF in PHP

These are the steps to convert an FODP file to TIFF using PHP.

Load the FODP file into a `Presentation` instance.

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

The presentation is written to the specified TIFF 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 FODP to TIFF PHP Conversion

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

## Save FODP as TIFF in PHP

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

## Other Supported Conversions

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