how to get toDataURL of generated qr
I want to use the generated QR code other places in my project. Is it possible to get the image from the canvas using toDataURL? I know generally how to use toDataURL, but the problem is the canvas generated in your script has no id so I don't know how to reference it...
Let me add a comment. I read previously that others were asking if you could write the qr code directly into an existing canvas. If that is possible it will fix my issue. I am basically trying to generate a qr code and place it into another canvas. the toDataURL is being used as an interim step to get an image.
Note in IE8 toDataURL() is not working
I would also like to get this working
can be done like this
var dataURL = $('canvas')[0].toDataURL("image/png"); console.log(dataURL);
window.open().document.write('<imgsrc="' + dataURL + '" />');