This commit is contained in:
cnwhy
2018-07-20 17:47:08 +08:00
parent 64acd199eb
commit 5a11eff012
28 changed files with 93 additions and 69 deletions
+20 -9
View File
@@ -1,12 +1,23 @@
var imgDecode = require('../server')
var path = require('path');
var dir = __dirname;
// console.log(path);
var P = function (p) {
return path.join(__dirname, p);
}
imgDecode.decodeQRFile('./img/out.bmp').then(console.log)
imgDecode.decodeQRFile('./img/out.jpg').then(console.log,console.error)
imgDecode.decodeQRFile('./img/out.png').then(console.log,console.error)
imgDecode.decodeQRFile('./img/out.gif').then(console.log,console.error)
imgDecode.decodeQRFile('./img/dt.gif').then(console.log,console.error)
imgDecode.decodeQRFile('./img/dt1.gif').then(console.log,console.error)
//动态img
var test = function (path, mark) {
return imgDecode.decodeByPath(P(path))
.then(console.log.bind(console, mark + ': '), console.error.bind(console, mark + ':'))
}
Promise.resolve()
.then(function () { test('./img/16.bmp', 'bmp16 ') })
.then(function () { return test('./img/24.bmp', 'bmp24 ') })
.then(function () { return test('./img/32.bmp', 'bmp32 ') })
.then(function () { return test('/img/lx.jpg', 'jpg_lx') }) //jpg 连续
.then(function () { return test('/img/yh.jpg', 'jpg_yh') }) //jpg 优化
.then(function () { return test('./img/8.png', 'png8 ') })
.then(function () { return test('./img/24.png', 'png24 ') })
.then(function () { return test('./img/jt.gif', 'gif_jt') }) //单帧
.then(function () { return test('./img/dt.gif', 'gif_dt') }) //多帧