# Convert ODP to TIFF in Python

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

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



## Convert ODP to TIFF in Python

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

## Convert ODP to TIFF using Python

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

### Python code for converting ODP to TIFF

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

## How to convert ODP to TIFF in Python

Follow these steps to render an ODP 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 ODP file with `Presentation`.

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

## Convert ODP to Other Supported Formats

- [ODP TO PPTX](/slides/python-java/conversion/odp-to-pptx/)
- [ODP TO PPT](/slides/python-java/conversion/odp-to-ppt/)
- [ODP TO PDF](/slides/python-java/conversion/odp-to-pdf/)
- [ODP TO HTML](/slides/python-java/conversion/odp-to-html/)
- [ODP TO PNG](/slides/python-java/conversion/odp-to-png/)
- [ODP TO BMP](/slides/python-java/conversion/odp-to-bmp/)
- [ODP TO JPG](/slides/python-java/conversion/odp-to-jpg/)
- [ODP TO FODP](/slides/python-java/conversion/odp-to-fodp/)
- [ODP TO GIF](/slides/python-java/conversion/odp-to-gif/)
- [ODP TO OTP](/slides/python-java/conversion/odp-to-otp/)
- [ODP TO POT](/slides/python-java/conversion/odp-to-pot/)
- [ODP TO POTM](/slides/python-java/conversion/odp-to-potm/)
- [ODP TO POTX](/slides/python-java/conversion/odp-to-potx/)
- [ODP TO PPS](/slides/python-java/conversion/odp-to-pps/)
- [ODP TO PPSM](/slides/python-java/conversion/odp-to-ppsm/)
- [ODP TO PPSX](/slides/python-java/conversion/odp-to-ppsx/)
- [ODP TO PPTM](/slides/python-java/conversion/odp-to-pptm/)
- [ODP TO SVG](/slides/python-java/conversion/odp-to-svg/)
