Hi, I have this html attached to a button which has a flow to convert powerapp data into pdf. The conversion works fine, however the images are randomly sized. I have tried adding the height and width attrib into the img src line (highlighted in red) but with no success. Can anyone please assist
PDF.Run("<!DOCTYPE html>
<html>
<body>
<h1>KBX</h1>
<p>Name</p>
<div>"& (CollectGallery.Selected.Title) &"</div>
<div>"& (CollectGallery.Selected.Date) &"</div>
<img src=" & JSON(Signatures.Image, JSONFormat.IgnoreBinaryData ) & ">
<img src=" & JSON(UploadedImage1.Image, JSONFormat.IgnoreBinaryData) & ">
</body>
</html>")