# Convert FODP to TIFF in Python

> Convert FODP presentations to multipage TIFF images in Python with Aspose.Slides for Python via Java.

Source: https://products.aspose.com/slides/python-java/conversion/fodp-to-tiff/
Updated: 2026-07-21



## Convert FODP to TIFF in Python

[**Aspose.Slides for Python via Java**](/slides/python-java/) can load an FODP presentation and render all of its slides to a multipage TIFF image. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.

## Convert FODP to TIFF using Python

Create a `Presentation` from the FODP file, then call `save` with `SaveFormat.Tiff`.

### Python code for converting FODP to TIFF

```python
presentation = Presentation("presentation.fodp")
try:
    presentation.save("presentation.tiff", SaveFormat.Tiff)
finally:
    presentation.dispose()
```

## How to convert FODP to TIFF in Python

Follow these steps to render an FODP presentation as a multipage TIFF image.

Install [**Aspose.Slides for Python via Java**](https://docs.aspose.com/slides/python-java/installation/).

Configure the package and start the Java Virtual Machine in your application.

Open the source FODP file with `Presentation`.

Call `save` with `SaveFormat.Tiff` to create the multipage TIFF image.

## Convert FODP to Other Supported Formats
