I'm trying to get all files in a folder put into a HTML table, then converted to a PDF. I have a good rough draft of this flow built out and working. The part I'm struggling with is the Append to <img src="" step.
I've tried:
<img src="[Thumbnail_Small]"> Which does work on a file.html but once its converted to file.pdf the images break.
SharePoint to HTML is working, just breaks after the convert to PDF.
Other articles mention I need to use the "Get File Content" SharePoint Block, which is posted to output a $content-type and $content. But that block doesn't seem to be doing anything for me, or one thing I noticed, is the file images, because there HEIC or phone site visit pics, the file content is so big the Power Automate is saying my byte size limit exceeds for that variable (if I try and store it in a variable).
Once those are outputted, some of the articles Ive found on other threads here says use:
<img src="data:[$content-type];base64,[$content]>
Any thoughts on which part I'm not doing right:
* Do I need a step that reduce the file content size?
* Is there a way to keep the thumbnail method but get the convert to PDF to keep it?
Any help appreciated.