Reputation: 6500
So I have a collection of close to 90 photographs along with a caption and the date stored in a text file. The images are of variable sizes and I would like to automate the procedure of converting this data into a PowerPoint presentation, with one picture on one slide along with its date and caption as the Title. Any reliable methods present?
Upvotes: 15
Views: 24791
Reputation: 4983
Another approach is to automate powerpoint through win32com. I have succesfully done this to augenerate presentations with lots of images following the instructions at http://www.s-anand.net/blog/automating-powerpoint-with-python/ .
Upvotes: 6
Reputation: 47906
Check out the python-pptx
library. Its useful for creating and updating PowerPoint .pptx
files.
Also for some quick examples in python-pptx
with screenshots, you can check this link.
Upvotes: 17