Convert ODP to TIFF in Python
Render an ODP presentation as a multipage TIFF image with Aspose.Slides for Python via Java.
Convert ODP to TIFF in Python
Aspose.Slides for Python via 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
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 .
Configure the package and start the Java Virtual Machine in your application.
Open the source ODP file with
Presentation.Call
savewithSaveFormat.Tiffto create the multipage TIFF image.
Convert ODP to Other Supported Formats
You can also convert ODP presentations to other supported file formats.