Power Automate add multiple Pictures

Dear all,
I build a flow, that creates a PowerPoint slide from a SharePoint list. In the list are two picture columns. Is it possible to add this two pictures with power automate into the PowerPoint slide? The Information type of the SharePoint columns are picture not link or picture.

Best wishes
Tom

Hello @TWendt,

To insert a picture into a PPTX template you can either use a publicly available link with the picture or a base 64 code of the picture.

Pictures in PPTX templates

You can use a SharePoint Power Automate connector to upload the images and then conert it with the base64 code:

base64(body('GetImage'))

So, to sum this up. You need to upload the picture from the SP list using a third-party connector. For example, the SharePoint connector and then convert the content to base64 code.
After that, you can insert the picture into the PowerPoint template.

Best regards,
Petr
Plumsail team

Hi,

thank you, that solved the problem.

Best wishes
Tom

1 Like