Convert OpenOffice ODP
Contents
[
Hide
]
Aspose.Slides API allows you to convert OpenOffice ODP presentations to many formats. The API used to convert ODP files to other document formats is the same one used for PowerPoint (PPT and PPTX) conversion operations.
These examples show you how to convert ODP documents to other formats (just change the source ODP file):
- Convert ODP to HTML
- Convert ODP to PDF
- Convert ODP to TIFF
- Convert ODP to SWF Flash
- Convert ODP to XPS
- Convert ODP to PDF with Notes
- Convert ODP to TIFF with Notes
For example, if you need to convert an ODP presentation to PDF, it can be done this way:
import aspose.slides as slides
pres = slides.Presentation("pres.odp")
pres.save("pres.pdf", slides.export.SaveFormat.PDF)