#img-比较
没有任何其他系统依赖性的图像比较。
如果您只是比较 PNG,请改用 。 它要快得多。
var comp = require ( "img-compare" ) ;
var config = {
output : "diff.png" ,
threshold : 50 , // num of pixels allowed to differ
} ;
comp ( [ "test/01.png" , "test/02.png" ] , config , function ( err , out ) {
if ( err ) {
console . log ( err . message ) ;
}
console . log ( out ) ; // out.status = fail/succes
1