码迷,mamicode.com
首页 > Web开发 > 详细

qrcode.js的识别解析二维码图片和生成二维码图片

时间:2018-08-31 15:46:11      阅读:766      评论:0      收藏:0      [点我收藏+]

标签:fun   static   ack   document   img   ons   nload   width   引入   

qrcode只通过前端就能生成二维码和解析二维码图片,

首先要引入文件qrcode.js,下载地址为:http://static.runoob.com/download/qrcodejs-04f46c6.zip;

1、识别本地图片:

    通过文件的形式获取到本地的图片,生成一个图片的临时路径,然后解析这个二维码图片;

   qrcode.decode(img)方法能将二维码图片解析,通过qrcode.callback=function(img){}将解析的图片返回文本值;

    //获取预览图片路径
                var getObjectURL = function(file){
                 var url = null ;
                 if (window.createObjectURL!=undefined) { // basic
                 url = window.createObjectURL(file) ;
                 } else if (window.URL!=undefined) { // mozilla(firefox)
                 url = window.URL.createObjectURL(file) ;
                  } else if (window.webkitURL!=undefined) { // webkit or chrome
                  url = window.webkitURL.createObjectURL(file) ;
                 }
                  return url ;
                 }
                
                console.log(getObjectURL(newfile[0]));// newfile[0]是通过input file上传的二维码图片文件
                qrcode.decode(getObjectURL(newfile[0]));
                qrcode.callback = function(imgMsg){
                    console.log("imgMsg",imgMsg);
                }

  

2、生成二维码:

   var qrcode = new QRCode(document.getElementById("qrcode"), {
width : 100,
height : 100
});

qrcode.makeCode(‘123123‘);

生成二维码

 

qrcode.js的识别解析二维码图片和生成二维码图片

标签:fun   static   ack   document   img   ons   nload   width   引入   

原文地址:https://www.cnblogs.com/ecmasea/p/9565913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!