Save all Shapes of slide into single JPG image
问题 I have a small tool to export the pictures inside ppt documents to image files, so I can import them somewhere else. For this, I have been using the following piece of code: For Each slideShape In slide If slideShape.Type = msoPicture Then Call slideShape.Export(materialPresentation.Path & "\" & ecode & "_" & cont & ".jpg", ppSaveAsJPG) cont = cont + 1 End If Next slideShape However, in a different tool, I am required to export all the shapes of a slide at once, exactly like selecting them