QR Code in a PDF
I am trying to generate a pdf using cfhtmltopdf with a QR code in it. My code displays the QR code without the cfhtmltopdf tag however when I add the tag the page is blank. I am using the jquery from https://www.jqueryscript.net/other/Canvas-Table-QR-Code-Generator.html to create the QR code. I have tried copying all the actual scripts into the tag instead of links and that didn't help.
Looking for a solution - I'm open to a different method of generating the QR code if that works.
Thanks in advance...
<cfhtmltopdf>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script type="text/javascript" src="../src/jquery.qrcode.js"></script>
<script type="text/javascript" src="../src/qrcode.js"></script>
<div id="qrcodeCanvas"></div>
<script>
$('#qrcodeCanvas').qrcode({
text : "https://google.com"
});
</script>
</cfhtmltopdf>
