-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
146 lines (135 loc) · 4.37 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
"use strict";
const fs = require("fs");
const getPixels = require("get-pixels");
const savePixels = require("save-pixels");
const ndarray = require("ndarray");
function getPixelsFromPath(path) {
return new Promise((resolve, reject) => {
getPixels(path, function(err, pixels){
if (err) {
reject(`Reading image failed. ${err}`);
}
resolve(pixels);
});
});
}
function pixelCompare(args) {
const baseImagePath = args.baseImage;
const testImagePath = args.testImage;
const outputImagePath = args.outputImage;
const baseColor = args.baseColor || [255, 0, 0, 255];
const testColor = args.testColor || [0, 255, 0, 255];
const baseImageIsRealized = (
baseImagePath.data !== undefined &&
baseImagePath.shape !== undefined &&
baseImagePath.stride !== undefined &&
baseImagePath.offset !== undefined
);
const baseImagePromise = baseImageIsRealized ? Promise.resolve(baseImagePath) : getPixelsFromPath(baseImagePath);
const testImagePromise = testImagePath ? getPixelsFromPath(testImagePath) : Promise.resolve();
return Promise.all([
baseImagePromise,
testImagePromise
])
.then(results => {
const baseImageNdarray = results[0];
const testImageNdarray = results[1];
if (!testImageNdarray) {
return function partiallyAppliedPixelCompare(newArgs) {
return pixelCompare(Object.assign({}, args, newArgs, { baseImage: baseImageNdarray }));
}
}
if (
baseImageNdarray.shape[0] !== testImageNdarray.shape[0]
|| baseImageNdarray.shape[1] !== testImageNdarray.shape[1]
) {
throw Error("image sizes are not the same");
}
if (baseImageNdarray.shape[2] !== testImageNdarray.shape[2]) {
throw Error("image depths are not the same");
}
const width = baseImageNdarray.shape[0];
const height = baseImageNdarray.shape[1];
const resultArray = [];
let isSame = true;
for(let i = 0; i < width; ++i) {
for(let j = 0; j < height; ++j) {
const tr = testImageNdarray.get(j, i, 0);
const tg = testImageNdarray.get(j, i, 1);
const tb = testImageNdarray.get(j, i, 2);
const ta = testImageNdarray.get(j, i, 3);
const br = baseImageNdarray.get(j, i, 0);
const bg = baseImageNdarray.get(j, i, 1);
const bb = baseImageNdarray.get(j, i, 2);
const ba = baseImageNdarray.get(j, i, 3);
if (tr !== br || tg !== bg || tb !== bb || ta !== ba) {
isSame = false;
if (outputImagePath) {
if (tr === 0 && tg === 0 && tb === 0 && ta === 0) {
/*test image is empty, so set base image color*/
resultArray.push(baseColor[0]);
resultArray.push(baseColor[1]);
resultArray.push(baseColor[2]);
resultArray.push(baseColor[3]);
}
else if (br === 0 && bg === 0 && bb === 0 && ba === 0){
/*base image is empty, so set test color*/
resultArray.push(testColor[0]);
resultArray.push(testColor[1]);
resultArray.push(testColor[2]);
resultArray.push(testColor[3]);
}
else {
/*blend test and base color together*/
const rr = baseColor[0] + testColor[0];
const gg = baseColor[1] + testColor[1];
const bb = baseColor[2] + testColor[2];
resultArray.push(rr);
resultArray.push(gg);
resultArray.push(bb);
resultArray.push(255);
}
}
}
else {
if (outputImagePath) {
resultArray.push(br);
resultArray.push(bg);
resultArray.push(bb);
resultArray.push(ba);
}
}
}
}
if (outputImagePath) {
const outputImagePathLength = outputImagePath.length;
const isJpeg = outputImagePath.indexOf(".jpeg") === (outputImagePathLength - 5);
const isJpg = outputImagePath.indexOf(".jpg") === (outputImagePathLength - 4);
const isPng = outputImagePath.indexOf(".png") === (outputImagePathLength - 4);
if (!isJpeg && !isJpg && !isPng) {
throw Error("Output image type is not supported");
}
const imageType = isJpeg ? "jpeg" : (isPng ? "png" : "jpg");
const resultNdarray = ndarray(
Uint8Array.from(resultArray),
baseImageNdarray.shape,
baseImageNdarray.stride,
baseImageNdarray.offset
);
return new Promise((resolve, reject) => {
const writable = fs.createWriteStream(outputImagePath);
const stream = savePixels(resultNdarray, imageType).pipe(writable);
stream.on("finish", () => {
resolve(isSame);
});
stream.on("error", err => {
reject(err);
});
});
}
else {
return isSame;
}
});
}
module.exports = pixelCompare;