這篇文章主要介紹了node 解析圖片二維碼的內(nèi)容代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比濱城網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式濱城網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋濱城地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。
const {readFile, readFileSync} = require('fs'); const decodeImage = require('jimp').read; const qrcodeReader = require('qrcode-reader'); const path = require("path"); var p = path.resolve(__dirname,"data/qrcode2.jpg"); readFile(p,function(err,fileBuffer){ if(err){ throw new Error(err); return ; } decodeImage(fileBuffer,function(err,image){ if(err){ throw new Error(err); return ; } let decodeQR = new qrcodeReader(); decodeQR.callback = function(errorWhenDecodeQR, result) { if (errorWhenDecodeQR) { throw new Error(errorWhenDecodeQR) return; } if (!result){ console.log("gone with wind"); }else{ console.log(result.result); //結(jié)果 } }; decodeQR.decode(image.bitmap); }); })
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。