This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.js
executable file
·504 lines (416 loc) · 10.4 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
// Copyright 2014-2015, Yahoo! Inc.
// Copyrights licensed under the Mit License. See the accompanying LICENSE file for terms.
var fs = require('fs'),
_ = require('underscore'),
PNG = require('pngjs').PNG,
pixel = require('./lib/pixel'),
modify = require('./lib/modify'),
conversion = require('./lib/conversion'),
filters = require('./lib/filters'),
streamBuffers = require("stream-buffers"),
MemoryStream = require('./lib/memoryStream'),
request = require('request');
var Decoder = require('./lib/png/decoder');
var Encoder = require('./lib/png/encoder');
/**
* PNGjs-image class
*
* @class PNGImage
* @submodule Core
* @param {PNG} image png-js object
* @constructor
*/
function PNGImage (image) {
image.on('error', function (err) {
PNGImage.log(err.message);
});
this._image = image;
}
/**
* Project version
*
* @property version
* @static
* @type {string}
*/
PNGImage.version = require('./package.json').version;
/**
* Filter dictionary
*
* @property filters
* @static
* @type {object}
*/
PNGImage.filters = {};
/**
* Sets a filter to the filter list
*
* @method setFilter
* @param {string} key
* @param {function} [fn]
*/
PNGImage.setFilter = function (key, fn) {
if (fn) {
this.filters[key] = fn;
} else {
delete this.filters[key];
}
};
/**
* Creates an image by dimensions
*
* @static
* @method createImage
* @param {int} width
* @param {int} height
* @return {PNGImage}
*/
PNGImage.createImage = function (width, height) {
var image = new PNG({
width: width,
height: height
});
return new PNGImage(image);
};
/**
* Copies an already existing image
*
* @static
* @method copyImage
* @param {PNGImage} image
* @return {PNGImage}
*/
PNGImage.copyImage = function (image) {
var newImage = this.createImage(image.getWidth(), image.getHeight());
image.getImage().bitblt(newImage.getImage(), 0, 0, image.getWidth(), image.getHeight(), 0, 0);
return newImage;
};
/**
* Reads an image from the filesystem
*
* @static
* @method readImage
* @param {string} path Url or file-path
* @param {function} fn
* @return {PNGImage}
*/
PNGImage.readImage = function (path, fn) {
if (path.indexOf('http') === 0) {
return this._readImageFromUrl(path, fn);
} else {
return this._readImageFromFs(path, fn);
}
};
PNGImage._readImageFromFs = function (filename, fn) {
var image = new PNG(),
resultImage = new PNGImage(image);
fn = fn || function () {};
fs.createReadStream(filename).once('error', function(err) {
fn(err, undefined);
}).pipe(image).once('parsed', function () {
image.removeListener('error', fn);
fn(undefined, resultImage);
}).once('error', function (err) {
image.removeListener('parsed', fn);
fn(err, resultImage);
}).pipe(image);
return resultImage;
};
PNGImage._readImageFromUrl = function (url, fn) {
var stream, req;
request.head(url, function (err, res) {
var contentType = (res.headers['content-type'] || '').toLowerCase();
if (contentType !== 'image/png') {
fn(new Error('Unsupported image format: ' + contentType));
} else {
stream = new MemoryStream({size: res.headers['content-length']});
req = request(url).pipe(stream);
req.on('error', function (err) {
fn(err);
});
req.on('finish', function () {
var buffer = stream.getBuffer();
PNGImage.loadImage(buffer, fn);
});
}
});
return null; // This will be deprecated
};
/**
* Reads an image from the filesystem synchronously
*
* @static
* @method readImageSync
* @param {string} filename
* @return {PNGImage}
*/
PNGImage.readImageSync = function (filename) {
return this.loadImageSync(fs.readFileSync(filename));
};
/**
* Loads an image from a blob
*
* @static
* @method loadImage
* @param {Buffer} blob
* @param {function} fn
* @return {PNGImage}
*/
PNGImage.loadImage = function (blob, fn) {
var image = new PNG(),
resultImage = new PNGImage(image);
fn = fn || function () {};
image.once('error', function (err) {
fn(err, resultImage);
});
image.parse(blob, function () {
image.removeListener('error', fn);
fn(undefined, resultImage);
});
return resultImage;
};
/**
* Loads an image synchronously from a blob
*
* @static
* @method loadImageSync
* @param {Buffer} blob
* @return {PNGImage}
*/
PNGImage.loadImageSync = function (blob) {
var decoder,
data,
headerChunk,
width, height;
decoder = new Decoder();
data = decoder.decode(blob, { strict: false });
headerChunk = decoder.getHeaderChunk();
width = headerChunk.getWidth();
height = headerChunk.getHeight();
var image = new PNG({
width: width,
height: height
});
data.copy(image.data, 0, 0, data.length);
return new PNGImage(image);
};
/**
* Log method that can be overwritten to modify the logging behavior
*
* @static
* @method log
* @param {string} text
*/
PNGImage.log = function (text) {
// Nothing yet; Overwrite this when needed
};
PNGImage.prototype = {
/**
* Gets the original png-js object
*
* @method getImage
* @return {PNG}
*/
getImage: function () {
return this._image;
},
/**
* Gets the image as a blob
*
* @method getBlob
* @return {Buffer}
*/
getBlob: function () {
return this._image.data;
},
/**
* Gets the width of the image
*
* @method getWidth
* @return {int}
*/
getWidth: function () {
return this._image.width;
},
/**
* Gets the height of the image
*
* @method getHeight
* @return {int}
*/
getHeight: function () {
return this._image.height;
},
/**
* Clips the current image by modifying it in-place
*
* @method clip
* @param {int} x Starting x-coordinate
* @param {int} y Starting y-coordinate
* @param {int} width Width of area relative to starting coordinate
* @param {int} height Height of area relative to starting coordinate
*/
clip: function (x, y, width, height) {
var image;
width = Math.min(width, this.getWidth() - x);
height = Math.min(height, this.getHeight() - y);
if ((width < 0) || (height < 0)) {
throw new Error('Width and height cannot be negative.');
}
image = new PNG({
width: width, height: height
});
this._image.bitblt(image, x, y, width, height, 0, 0);
this._image = image;
},
/**
* Fills an area with the specified color
*
* @method fillRect
* @param {int} x Starting x-coordinate
* @param {int} y Starting y-coordinate
* @param {int} width Width of area relative to starting coordinate
* @param {int} height Height of area relative to starting coordinate
* @param {object} color
* @param {int} [color.red] Red channel of color to set
* @param {int} [color.green] Green channel of color to set
* @param {int} [color.blue] Blue channel of color to set
* @param {int} [color.alpha] Alpha channel for color to set
* @param {float} [color.opacity] Opacity of color
*/
fillRect: function (x, y, width, height, color) {
var i,
iLen = x + width,
j,
jLen = y + height,
index;
for (i = x; i < iLen; i++) {
for (j = y; j < jLen; j++) {
index = this.getIndex(i, j);
this.setAtIndex(index, color);
}
}
},
/**
* Applies a list of filters to the image
*
* @method applyFilters
* @param {string|object|object[]} filters Names of filters in sequence `{key:<string>, options:<object>}`
* @param {boolean} [returnResult=false]
* @return {PNGImage}
*/
applyFilters: function (filters, returnResult) {
var image,
newFilters;
// Convert to array
if (_.isString(filters)) {
filters = [filters];
} else if (!_.isArray(filters) && _.isObject(filters)) {
filters = [filters];
}
// Format array as needed by the function
newFilters = [];
(filters || []).forEach(function (filter) {
if (_.isString(filter)) {
newFilters.push({key: filter, options: {}});
} else if (_.isObject(filter)) {
newFilters.push(filter);
}
});
filters = newFilters;
// Process filters
image = this;
(filters || []).forEach(function (filter) {
var currentFilter = PNGImage.filters[filter.key];
if (!currentFilter) {
throw new Error('Unknown filter ' + filter.key);
}
filter.options = filter.options || {};
filter.options.needsCopy = !!returnResult;
image = currentFilter(this, filter.options);
}.bind(this));
// Overwrite current image, or just returning it
if (!returnResult) {
this._image = image.getImage();
}
return image;
},
/**
* Gets index of a specific coordinate
*
* @method getIndex
* @param {int} x X-coordinate of pixel
* @param {int} y Y-coordinate of pixel
* @return {int} Index of pixel
*/
getIndex: function (x, y) {
return (this.getWidth() * y) + x;
},
/**
* Writes the image to the filesystem
*
* @method writeImage
* @param {string} filename Path to file
* @param {function} fn Callback
*/
writeImage: function (filename, fn) {
fn = fn || function () {};
this._image.pack().pipe(fs.createWriteStream(filename)).once('close', function () {
this._image.removeListener('error', fn);
fn(undefined, this);
}.bind(this)).once('error', function (err) {
this._image.removeListener('close', fn);
fn(err, this);
}.bind(this));
},
writeImageSync: function (filename) {
fs.writeFileSync(filename, this.toBlobSync());
},
toBlobSync: function (options) {
var encoder = new Encoder();
return encoder.encode(this.getBlob(), this.getWidth(), this.getHeight(), options);
},
/**
* Writes the image to a buffer
*
* @method toBlob
* @param {function} fn Callback
*/
toBlob: function (fn) {
var writeBuffer = new streamBuffers.WritableStreamBuffer({
initialSize: (100 * 1024), incrementAmount: (10 * 1024)
});
fn = fn || function () {};
this._image.pack().pipe(writeBuffer).once('close', function () {
this._image.removeListener('error', fn);
fn(undefined, writeBuffer.getContents());
}.bind(this)).once('error', function (err) {
this._image.removeListener('close', fn);
fn(err);
}.bind(this));
}
};
PNGImage.prototype.constructor = PNGImage;
// Add standard methods to the prototype
_.extend(PNGImage.prototype, pixel);
_.extend(PNGImage.prototype, modify);
_.extend(PNGImage.prototype, conversion);
// Adds all standard filters
_.keys(filters).forEach(function (key) {
PNGImage.setFilter(key, filters[key]);
});
/**
* Instruments the node environment so that PNG files can be loaded through require calls
*
* @static
* @method instrument
*/
PNGImage.instrument = function () {
require.extensions['.png'] = function(module, filename) {
var image = PNGImage.readImageSync(filename);
module.exports = image;
};
};
PNGImage.Decoder = Decoder;
PNGImage.Encoder = Encoder;
module.exports = PNGImage;