Salve a tutti,
come da titolo sto creando uno script che mi permette di creare i QR Code, ho realizzato il seguente codice:
codice HTML:

codice HTML:
<html><head><title>basic example</title></head><body><script src="http://code.jquery.com/jquery-3.2.0.min.js"></script><script type="text/javascript" src="jquery-qrcode-0.14.0.min.js"></script><div id="qrcodeCanvas"></div>
<script>$(document).ready(function(){
	jQuery('#qrcodeCanvas').qrcode({    render: 'canvas',
    minVersion: 1,    maxVersion: 40,    ecLevel: 'H',    left: 0,    top: 0,    size: 200,    fill: '#000',    background: null,    text: 'no text',    radius: 0,    quiet: 0,    mode: 4,
    mSize: 0.1,    mPosX: 0.5,    mPosY: 0.5,
    label: "text",    fontname: 'sans',    fontcolor: '#000',    image:  'https://pbs.twimg.com/profile_images/378800000017423279/1a6d6f295da9f97bb576ff486ed81389_normal.png'	});});	</script></body></html>


il problema sta nel fatto che impostando il mode a 4 e inserendo l'url dell'immagine il canvas non esce mentre con il file di testo funziona, dove sbaglio?