Convert OTP to TIFF in Python
Render an OTP presentation template as a multipage TIFF image with Aspose.Slides for Python via Java.
Convert OTP to TIFF in Python
Aspose.Slides for Python via Java can load an OTP presentation template and render all of its slides to a multipage TIFF image. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.
Convert OTP to TIFF using Python
Create a Presentation from the OTP file, then call save with SaveFormat.Tiff.
Python code for converting OTP to TIFF
presentation = Presentation("presentation.otp")
try:
presentation.save("presentation.tiff", SaveFormat.Tiff)
finally:
presentation.dispose()
How to convert OTP to TIFF in Python
Follow these steps to render an OTP presentation template 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 OTP file with
Presentation.Call
savewithSaveFormat.Tiffto create the multipage TIFF image.
Convert OTP to Other Supported Formats
You can also convert OTP presentation templates to other supported file formats.