Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fileformat-slides-gists/88dcbc686337ab22c5d35e311e3e078c to your computer and use it in GitHub Desktop.
Save fileformat-slides-gists/88dcbc686337ab22c5d35e311e3e078c to your computer and use it in GitHub Desktop.
How to Remove Pictures from PowerPoint PPT PPTX Slides
Presentation presentation = Presentation.Open("File_Path");
// Get Slides
var slides = presentation.GetSlides();
var slide = slides[1];
// Get Images from slide
List<Image> images = slide.Images;
// Choose desired image
var image = slide.Images[0];
// Remove image
image.Remove();
// Save presentation
presentation.Save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment