Created
March 12, 2025 08:09
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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