jquery-qrcode icon indicating copy to clipboard operation
jquery-qrcode copied to clipboard

Image box is not working with SVG

Open acki opened this issue 4 years ago • 1 comments

Hi

The image box option is not working with an img element displaying a SVG. Can you please fix this?

Thanks, Christoph

acki avatar Sep 27 '20 08:09 acki

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",
            });
        };

AbyssDeep avatar Jul 02 '21 15:07 AbyssDeep