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