Convert OpenOffice ODP

Contents
[ ]

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):

For example, if you need to convert an ODP presentation to PDF, it can be done this way:

SharedPtr<Presentation> pres = MakeObject<Presentation>(u"pres.odp");
pres->Save(u"pres.pdf", SaveFormat::Pdf);