How to extract all images from a PowerPoint presentation

extractmicrosoft-powerpointmicrosoft-powerpoint-2010slideshow

I have a PowerPoint presentation that is basically a slideshow. How can I extract all the images into a folder?

I've seen articles that direct you to save the presentation as HTML, but this file format is not in the PowerPoint 2010.

Any ideas?

Best Answer

  1. Open the PowerPoint presentation in PowerPoint 2010.

  2. Press Alt+F11 on your keyboard.

  3. Microsoft Visual Basic for Applications opens.

  4. Press Ctrl+G on your keyboard.

  5. The Immediate window opens within Microsoft VBA.

  6. Copy and paste the following text into the Immediate window:

    ActivePresentation.SaveAs "<Drive>:\users\<username>\desktop\<filename>.htm", ppSaveAsHTML, msoFalse
    
  7. Press Enter on your keyboard.

  8. In PowerPoint, where your presentation once had the filename you had given it, it now says .htm (upon saving the presentation the title bar will revert back to its original name).

    Navigate to where your PowerPoint presentation is saved. There is now a folder with the same name as your presentation followed by _files. (Example: HTMLme_files)

  9. Open the new folder.

    Included inside the folder are all of the audio and image files used in the presentation.

Source of Information

Related Question