Skip to content

Instantly share code, notes, and snippets.

@aspose-slides-gists
Created October 30, 2023 19:02
Convert ODP to PDF in Python
import aspose.slides as slides
import aspose.pydrawing as drawing
with slides.Presentation("presentation.odp") as presentation:
presentation.save("presentation.pdf", slides.export.SaveFormat.PDF)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment