Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active July 26, 2021 15:35
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/a0b4d26a6fc19b6539e3a31e1391d4e1 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/a0b4d26a6fc19b6539e3a31e1391d4e1 to your computer and use it in GitHub Desktop.
Convert PowerPoint PPT to PPTX in C#
// Instantiate a Presentation object that represents the PPT file
Presentation pres = new Presentation("PPTtoPPTX.ppt");
// Save the PPT presentation as PPTX
pres.Save("PPTtoPPTX_out.pptx", SaveFormat.Pptx);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment