This article mainly introduces you to the JS method of generating QR codes from links and converting them into pictures, involving the qrcodejs plug-in and js picture generation related operating techniques. Friends who need it can refer to it. I hope it can help you.
<p id="code"></p> <img id="img"/> <script type="text/javascript"> var qrcode=$("#code").qrcode({ render:'canvas||table', width: 200, //宽度 height:200, //高度 text: "http://www.baidu.com" //任意内容 }).hide(); var canvas=qrcode.find('canvas').get(0); //如果有循环,此句必不可少 qrcode.find('canvas').remove(); var data = canvas.toDataURL('image/jpg'); $('#img').attr('src',data) ; saveFile(data,"fd范德萨范德萨"); //转为图片的方法,需要上门的data function saveFile(data,filename){ var save_link=document.createElementNS('http://www.w3.org/1999/xhtml', 'a'); save_link.href=data; save_link.download=filename; var event=document.createEvent('MouseEvents'); event.initMouseEvent('click',true,false,window,0,0,0,0,0,false,false,false,false,0,null); save_link.dispatchEvent(event); }; </script>
Related recommendations:
phpqrcode class Methods of generating QR codes
Two methods of javascript generating QR codes
The above is the detailed content of JS method to generate QR code from link and convert it into picture. For more information, please follow other related articles on the PHP Chinese website!