Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created March 12, 2025 08:09
Show Gist options
  • Save conholdate-gists/f0dc27cda34d9834f36faf0718e84c0d to your computer and use it in GitHub Desktop.
Save conholdate-gists/f0dc27cda34d9834f36faf0718e84c0d to your computer and use it in GitHub Desktop.
Convert PPTX to XML in C# | Presentation to PowerPoint XML in C# .NET
// Load the input Presentation
using var presentation = new Aspose.Slides.Presentation("sample.pptx");
// Save the output PowerPoint XML Presentation format
presentation.Save(dataDir + "output.xml", Aspose.Slides.Export.SaveFormat.Xml);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment