Reputation:
I am trying to paste two pictures into a powerpoint slide on after another. However, whenever I am not sure how to do this. I know how to add one picture, but can't find anything online for adding two.
To add a picture I do the code below
pic = slide.shapes.add_picture(img_path, left, top, width = Inches(7.72), height = Inches(4.5))
Upvotes: 1
Views: 2921
Reputation: 1159
Just add_picture
with a different set of coordinates so that the pictures don't overlap, as in the official documentation.
Upvotes: 2