Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active September 22, 2021 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/9beb13bf671323edf0c3fe96327beaa9 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/9beb13bf671323edf0c3fe96327beaa9 to your computer and use it in GitHub Desktop.
Convert ODP to PDF using Java
// Load the ODP file
Presentation presentation = new Presentation("sample.odp");
// Convert ODP to PDF
presentation.save("output.pdf", SaveFormat.Pdf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment