llqrcode js識別二維碼解析二維碼信息實例
更新時間:2022年11月10日 10:36:33 作者:TANKING
這篇文章主要為大家介紹了llqrcode js識別二維碼解析二維碼信息實例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
正文
llqrcode.js具有掃描二維碼功能,用來進行從圖片中識別二維碼,可解析二維碼的信息。
代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>llqrcode識別二維碼</title> <script src="llqrcode.js"></script> <script> function getUrl(e,param){ analyticCode.getUrl( param,e,function(url,param){ document.querySelector("#uploadQrcode").style.display = "none"; document.querySelector("#uploadQrcode_preview").innerHTML ="<img src='"+param+"' />"; document.querySelector("#qrcodeUrl").innerHTML ="識別內容:"+ url; document.querySelector("#rescan").style.display = "block"; } ) } let getObjectURL = function(file){ let url = null ; if (window.createObjectURL!=undefined) { url = window.createObjectURL(file) ; } else if (window.URL!=undefined) { url = window.URL.createObjectURL(file) ; } else if (window.webkitURL!=undefined) { url = window.webkitURL.createObjectURL(file) ; } return url ; } window.analyticCode = { getUrl : function(type,elem,fn){ let url = null,src = null; if(type === 'img-url'){ url = elem.src; }else if(type === 'file-url' && elem.files.length > 0){ url = getObjectURL(elem.files[0]); } qrcode.decode(url); qrcode.callback = function(imgMsg){ fn(imgMsg,url); } } } </script> <style> h3{ text-align: center; margin-top: 100px; } #uploadQrcode{ width: 80px; height: 80px; margin:20px auto 0; border: 2px dashed #ccc; border-radius: 20px; font-size: 25px; line-height: 80px; text-align: center; color: #ccc; position: relative; cursor: pointer; } #selectQrcode{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; } #qrcodeUrl{ text-align: center; margin-top: 15px; } #uploadQrcode_preview{ width: 80px; height: 80px; margin:20px auto 0; } #uploadQrcode_preview img{ width: 80px; height: 80px; } #rescan{ text-align: center; text-decoration: none; color: #666; font-size: 15px; margin-top: 15px; display: none; } </style> </head> <body> <h3>選擇一張二維碼圖片</h3> <div id="uploadQrcode"> <span>+</span> <input type="file" id="selectQrcode" onChange="getUrl(this,'file-url')" /> </div> <!-- 圖片預覽 --> <div id="uploadQrcode_preview"></div> <!-- 識別結果 --> <p id="qrcodeUrl"></p> <a href="" id=" rel="external nofollow" rescan">重新識別</a> </body> </html>
以上就是llqrcode js識別二維碼解析二維碼信息實例的詳細內容,更多關于llqrcode js識別解析二維碼信息的資料請關注腳本之家其它相關文章!
相關文章
教你如何在 Javascript 文件里使用 .Net MVC Razor 語法
文章主要是介紹了通過一個第三方類庫RazorJS,實現Javascript 文件里使用 .Net MVC Razor 語法,很巧妙,推薦給大家2014-07-07IE6,IE7,IE8下使用Javascript記錄光標選中范圍(已補全)
IE6,7,8下使用Javascript記錄光標選中范圍(已補全)(已解決單個節(jié)點內部重復字符的問題)2011-08-08layui: layer.open加載窗體時出現遮罩層的解決方法
今天小編就為大家分享一篇layui: layer.open加載窗體時出現遮罩層的解決方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-09-09