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 ?