Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active July 26, 2021 15:45
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/bb28ea9880c3047ff4e8e5220477c3e2 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/bb28ea9880c3047ff4e8e5220477c3e2 to your computer and use it in GitHub Desktop.
Convert PowerPoint PPT to PPTX in Java
// Instantiate a Presentation object that represents the PPT file
Presentation pres = new Presentation("sample.ppt");
try {
// Save the PPT presentation as PPTX
pres.save("convetred.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment