Created
April 23, 2024 14:03
-
-
Save fileformat-slides-gists/e6f0233bea2a00ea3da43896c80a7517 to your computer and use it in GitHub Desktop.
Save All Images from PowerPoint Presentation in C# | .NET Open-Source API
This file contains 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
// Open presentation | |
Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\sample.pptx"); | |
// Extract images and save it at specified path. | |
presentation.ExtractAndSaveImages("directory_path"); */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment