I have generated a barcode using HTML Text. But not able to convert that into a PDF -
This is what I am doing in Power App in HTML Text Input: (Barcode is being generated successfully)
"<img src='https://www.barcodesinc.com/generator/image.php?code=" & 'txtStockCode.Text'& "&style=196&type=C128C'>"
Code in Power Automate (MS Flow) : (Not working)
concat("<!DOCTYPE html>
<html>
<body>
<img src='https://www.barcodesinc.com/generator/image.php?code=','', '&style=195&type=C128C'>
</body>
</html>
")
Also, how can i get what is stored in txtStockCode.Text text box from PowerApps ?
To display an image in a PDF when converting HTML in Power Automate you can't just reference the URL of the image. You have to retrieve the image and get its base64 representation. That base64 string then needs to be input where the src='' code is in your HTML. Take a look at the instructions in this blog.
Generate Any PDF Documents from HTML with Flow — John Liu .NET
@PowerDigitize - The below link explains how values can be passed to Power Automate from Apps.
https://powerusers.microsoft.com/t5/Building-Flows/Pass-variable-from-powerapps-to-flow/td-p/66534
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 2