jquery-qrcode
jquery-qrcode copied to clipboard
Image box is not working with SVG
Hi
The image box option is not working with an img element displaying a SVG. Can you please fix this?
Thanks, Christoph
This work for me.
var img_buffer = new Image();
img_buffer.src = '/url-to-svgImage.svg';
img_buffer.onload = function() {
jQuery('#qrCode').qrcode({
render: 'canvas',
mode: 4,
mSize: 0.3,
mPosX: 0.5,
mPosY: 0.5,
image: img_buffer,
text: "text",
});
};