Created
April 5, 2019 10:11
-
-
Save DataSolveProblems/c13e56200163d96e4ed1ebfe09247905 to your computer and use it in GitHub Desktop.
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
Sub Export_Images() | |
Dim Destination_Folder As String | |
Dim sld As Slide | |
Dim shp As Shape | |
Destination_Folder = "<Folder Path>" | |
For Each sld In ActivePresentation.Slides | |
For Each shp In sld.Shapes | |
If shp.Type = msoPicture Then | |
shp.Export Destination_Folder & shp.Name & ".jpg", ppShapeFormatJPG | |
End If | |
Next shp | |
Next sld | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment