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 ?
@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
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
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
199 | |
71 | |
51 | |
42 | |
30 |
User | Count |
---|---|
268 | |
118 | |
94 | |
90 | |
81 |