@depup/sharp 0.34.5-depup.0 → 0.35.4-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/README.md +16 -109
  2. package/changes.json +5 -0
  3. package/{lib/channel.js → dist/channel.cjs} +1 -1
  4. package/dist/channel.mjs +177 -0
  5. package/{lib/colour.js → dist/colour.cjs} +11 -7
  6. package/dist/colour.mjs +199 -0
  7. package/{lib/composite.js → dist/composite.cjs} +8 -7
  8. package/dist/composite.mjs +213 -0
  9. package/{lib/constructor.js → dist/constructor.cjs} +42 -30
  10. package/dist/constructor.mjs +511 -0
  11. package/dist/index.cjs +25 -0
  12. package/dist/index.d.cts +1999 -0
  13. package/dist/index.d.mts +2046 -0
  14. package/dist/index.mjs +25 -0
  15. package/{lib/input.js → dist/input.cjs} +47 -37
  16. package/dist/input.mjs +819 -0
  17. package/{lib/is.js → dist/is.cjs} +1 -1
  18. package/dist/is.mjs +143 -0
  19. package/{lib/libvips.js → dist/libvips.cjs} +35 -30
  20. package/dist/libvips.mjs +212 -0
  21. package/{lib/operation.js → dist/operation.cjs} +37 -51
  22. package/dist/operation.mjs +1002 -0
  23. package/{lib/output.js → dist/output.cjs} +166 -47
  24. package/dist/output.mjs +1785 -0
  25. package/{lib/resize.js → dist/resize.cjs} +54 -32
  26. package/dist/resize.mjs +617 -0
  27. package/dist/sharp.cjs +174 -0
  28. package/dist/sharp.mjs +174 -0
  29. package/{lib/utility.js → dist/utility.cjs} +18 -8
  30. package/dist/utility.mjs +301 -0
  31. package/install/build.js +3 -3
  32. package/lib/index.d.ts +111 -83
  33. package/package.json +95 -54
  34. package/src/binding.gyp +19 -14
  35. package/src/common.cc +77 -21
  36. package/src/common.h +23 -4
  37. package/src/metadata.cc +66 -8
  38. package/src/metadata.h +6 -1
  39. package/src/operations.cc +25 -8
  40. package/src/operations.h +1 -1
  41. package/src/pipeline.cc +203 -69
  42. package/src/pipeline.h +15 -1
  43. package/src/stats.cc +6 -6
  44. package/src/utilities.cc +7 -6
  45. package/install/check.js +0 -14
  46. package/lib/index.js +0 -16
  47. package/lib/sharp.js +0 -121
@@ -0,0 +1,1002 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ import is from './is.mjs';
7
+
8
+ /**
9
+ * How accurate an operation should be.
10
+ * @member
11
+ * @private
12
+ */
13
+ const vipsPrecision = {
14
+ integer: 'integer',
15
+ float: 'float',
16
+ approximate: 'approximate'
17
+ };
18
+
19
+ /**
20
+ * Rotate the output image.
21
+ *
22
+ * The provided angle is converted to a valid positive degree rotation.
23
+ * For example, `-450` will produce a 270 degree rotation.
24
+ *
25
+ * When rotating by an angle other than a multiple of 90,
26
+ * the background colour can be provided with the `background` option.
27
+ *
28
+ * For backwards compatibility, if no angle is provided, `.autoOrient()` will be called.
29
+ *
30
+ * Only one rotation can occur per pipeline (aside from an initial call without
31
+ * arguments to orient via EXIF data). Previous calls to `rotate` in the same
32
+ * pipeline will be ignored.
33
+ *
34
+ * Multi-page images can only be rotated by 180 degrees.
35
+ *
36
+ * Method order is important when rotating, resizing and/or extracting regions,
37
+ * for example `.rotate(x).extract(y)` will produce a different result to `.extract(y).rotate(x)`.
38
+ *
39
+ * @example
40
+ * const rotateThenResize = await sharp(input)
41
+ * .rotate(90)
42
+ * .resize({ width: 16, height: 8, fit: 'fill' })
43
+ * .toBuffer();
44
+ * const resizeThenRotate = await sharp(input)
45
+ * .resize({ width: 16, height: 8, fit: 'fill' })
46
+ * .rotate(90)
47
+ * .toBuffer();
48
+ *
49
+ * @param {number} [angle=auto] angle of rotation.
50
+ * @param {Object} [options] - if present, is an Object with optional attributes.
51
+ * @param {string|Object} [options.background="#000000"] parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha.
52
+ * @returns {Sharp}
53
+ * @throws {Error} Invalid parameters
54
+ */
55
+ function rotate (angle, options) {
56
+ if (!is.defined(angle)) {
57
+ return this.autoOrient();
58
+ }
59
+ if (this.options.angle || this.options.rotationAngle) {
60
+ this.options.debuglog('ignoring previous rotate options');
61
+ this.options.angle = 0;
62
+ this.options.rotationAngle = 0;
63
+ }
64
+ if (is.integer(angle) && !(angle % 90)) {
65
+ this.options.angle = angle;
66
+ } else if (is.number(angle)) {
67
+ this.options.rotationAngle = angle;
68
+ if (is.object(options) && options.background) {
69
+ this._setBackgroundColourOption('rotationBackground', options.background);
70
+ }
71
+ } else {
72
+ throw is.invalidParameterError('angle', 'numeric', angle);
73
+ }
74
+ return this;
75
+ }
76
+
77
+ /**
78
+ * Auto-orient based on the EXIF `Orientation` tag, then remove the tag.
79
+ * Mirroring is supported and may infer the use of a flip operation.
80
+ *
81
+ * Only the EXIF `Orientation` tag is considered; orientation carried in other
82
+ * places, such as an XMP `tiff:Orientation` element, is left untouched and
83
+ * remains the responsibility of the consumer.
84
+ *
85
+ * Previous or subsequent use of `rotate(angle)` and either `flip()` or `flop()`
86
+ * will logically occur after auto-orientation, regardless of call order.
87
+ *
88
+ * @example
89
+ * const output = await sharp(input).autoOrient().toBuffer();
90
+ *
91
+ * @example
92
+ * const pipeline = sharp()
93
+ * .autoOrient()
94
+ * .resize(null, 200)
95
+ * .toBuffer(function (err, outputBuffer, info) {
96
+ * // outputBuffer contains 200px high JPEG image data,
97
+ * // auto-oriented using EXIF Orientation tag
98
+ * // info.width and info.height contain the dimensions of the resized image
99
+ * });
100
+ * readableStream.pipe(pipeline);
101
+ *
102
+ * @returns {Sharp}
103
+ */
104
+ function autoOrient () {
105
+ this.options.input.autoOrient = true;
106
+ return this;
107
+ }
108
+
109
+ /**
110
+ * Mirror the image vertically (up-down) about the x-axis.
111
+ * This always occurs before rotation, if any.
112
+ *
113
+ * This operation does not work correctly with multi-page images.
114
+ *
115
+ * @example
116
+ * const output = await sharp(input).flip().toBuffer();
117
+ *
118
+ * @param {Boolean} [flip=true]
119
+ * @returns {Sharp}
120
+ */
121
+ function flip (flip) {
122
+ this.options.flip = is.bool(flip) ? flip : true;
123
+ return this;
124
+ }
125
+
126
+ /**
127
+ * Mirror the image horizontally (left-right) about the y-axis.
128
+ * This always occurs before rotation, if any.
129
+ *
130
+ * @example
131
+ * const output = await sharp(input).flop().toBuffer();
132
+ *
133
+ * @param {Boolean} [flop=true]
134
+ * @returns {Sharp}
135
+ */
136
+ function flop (flop) {
137
+ this.options.flop = is.bool(flop) ? flop : true;
138
+ return this;
139
+ }
140
+
141
+ /**
142
+ * Perform an affine transform on an image. This operation will always occur after resizing, extraction and rotation, if any.
143
+ *
144
+ * You must provide an array of length 4 or a 2x2 affine transformation matrix.
145
+ * By default, new pixels are filled with a black background. You can provide a background colour with the `background` option.
146
+ * A particular interpolator may also be specified. Set the `interpolator` option to an attribute of the `sharp.interpolators` Object e.g. `sharp.interpolators.nohalo`.
147
+ *
148
+ * In the case of a 2x2 matrix, the transform is:
149
+ * - X = `matrix[0, 0]` \* (x + `idx`) + `matrix[0, 1]` \* (y + `idy`) + `odx`
150
+ * - Y = `matrix[1, 0]` \* (x + `idx`) + `matrix[1, 1]` \* (y + `idy`) + `ody`
151
+ *
152
+ * where:
153
+ * - x and y are the coordinates in input image.
154
+ * - X and Y are the coordinates in output image.
155
+ * - (0,0) is the upper left corner.
156
+ *
157
+ * @since 0.27.0
158
+ *
159
+ * @example
160
+ * const pipeline = sharp()
161
+ * .affine([[1, 0.3], [0.1, 0.7]], {
162
+ * background: 'white',
163
+ * interpolator: sharp.interpolators.nohalo
164
+ * })
165
+ * .toBuffer((err, outputBuffer, info) => {
166
+ * // outputBuffer contains the transformed image
167
+ * // info.width and info.height contain the new dimensions
168
+ * });
169
+ *
170
+ * inputStream
171
+ * .pipe(pipeline);
172
+ *
173
+ * @param {Array<Array<number>>|Array<number>} matrix - affine transformation matrix
174
+ * @param {Object} [options] - if present, is an Object with optional attributes.
175
+ * @param {String|Object} [options.background="#000000"] - parsed by the [color](https://www.npmjs.org/package/color) module to extract values for red, green, blue and alpha.
176
+ * @param {Number} [options.idx=0] - input horizontal offset
177
+ * @param {Number} [options.idy=0] - input vertical offset
178
+ * @param {Number} [options.odx=0] - output horizontal offset
179
+ * @param {Number} [options.ody=0] - output vertical offset
180
+ * @param {String} [options.interpolator=sharp.interpolators.bicubic] - interpolator
181
+ * @returns {Sharp}
182
+ * @throws {Error} Invalid parameters
183
+ */
184
+ function affine (matrix, options) {
185
+ const isValidShape = Array.isArray(matrix) && (
186
+ // 1x4 array of numbers
187
+ (matrix.length === 4 && matrix.every(is.number)) ||
188
+ // 2x2 array of arrays of numbers
189
+ (matrix.length === 2 && matrix.every((row) => Array.isArray(row) && row.length === 2))
190
+ );
191
+ const flatMatrix = isValidShape ? matrix.flat() : [];
192
+ if (flatMatrix.length === 4 && flatMatrix.every(is.number)) {
193
+ this.options.affineMatrix = flatMatrix;
194
+ } else {
195
+ throw is.invalidParameterError('matrix', '1x4 or 2x2 array', matrix);
196
+ }
197
+
198
+ if (is.defined(options)) {
199
+ if (is.object(options)) {
200
+ this._setBackgroundColourOption('affineBackground', options.background);
201
+ if (is.defined(options.idx)) {
202
+ if (is.number(options.idx)) {
203
+ this.options.affineIdx = options.idx;
204
+ } else {
205
+ throw is.invalidParameterError('options.idx', 'number', options.idx);
206
+ }
207
+ }
208
+ if (is.defined(options.idy)) {
209
+ if (is.number(options.idy)) {
210
+ this.options.affineIdy = options.idy;
211
+ } else {
212
+ throw is.invalidParameterError('options.idy', 'number', options.idy);
213
+ }
214
+ }
215
+ if (is.defined(options.odx)) {
216
+ if (is.number(options.odx)) {
217
+ this.options.affineOdx = options.odx;
218
+ } else {
219
+ throw is.invalidParameterError('options.odx', 'number', options.odx);
220
+ }
221
+ }
222
+ if (is.defined(options.ody)) {
223
+ if (is.number(options.ody)) {
224
+ this.options.affineOdy = options.ody;
225
+ } else {
226
+ throw is.invalidParameterError('options.ody', 'number', options.ody);
227
+ }
228
+ }
229
+ if (is.defined(options.interpolator)) {
230
+ if (is.inArray(options.interpolator, Object.values(this.constructor.interpolators))) {
231
+ this.options.affineInterpolator = options.interpolator;
232
+ } else {
233
+ throw is.invalidParameterError('options.interpolator', 'valid interpolator name', options.interpolator);
234
+ }
235
+ }
236
+ } else {
237
+ throw is.invalidParameterError('options', 'object', options);
238
+ }
239
+ }
240
+
241
+ return this;
242
+ }
243
+
244
+ /**
245
+ * Sharpen the image.
246
+ *
247
+ * When used without parameters, performs a fast, mild sharpen of the output image.
248
+ *
249
+ * When a `sigma` is provided, performs a slower, more accurate sharpen of the L channel in the LAB colour space.
250
+ * Fine-grained control over the level of sharpening in "flat" (m1) and "jagged" (m2) areas is available.
251
+ *
252
+ * See {@link https://www.libvips.org/API/current/method.Image.sharpen.html libvips sharpen} operation.
253
+ *
254
+ * @example
255
+ * const data = await sharp(input).sharpen().toBuffer();
256
+ *
257
+ * @example
258
+ * const data = await sharp(input).sharpen({ sigma: 2 }).toBuffer();
259
+ *
260
+ * @example
261
+ * const data = await sharp(input)
262
+ * .sharpen({
263
+ * sigma: 2,
264
+ * m1: 0,
265
+ * m2: 3,
266
+ * x1: 3,
267
+ * y2: 15,
268
+ * y3: 15,
269
+ * })
270
+ * .toBuffer();
271
+ *
272
+ * @param {Object} [options] - if present, is an Object with attributes
273
+ * @param {number} [options.sigma] - the sigma of the Gaussian mask, where `sigma = 1 + radius / 2`, between 0.000001 and 10
274
+ * @param {number} [options.m1=1.0] - the level of sharpening to apply to "flat" areas, between 0 and 1000000
275
+ * @param {number} [options.m2=2.0] - the level of sharpening to apply to "jagged" areas, between 0 and 1000000
276
+ * @param {number} [options.x1=2.0] - threshold between "flat" and "jagged", between 0 and 1000000
277
+ * @param {number} [options.y2=10.0] - maximum amount of brightening, between 0 and 1000000
278
+ * @param {number} [options.y3=20.0] - maximum amount of darkening, between 0 and 1000000
279
+ * @returns {Sharp}
280
+ * @throws {Error} Invalid parameters
281
+ */
282
+ function sharpen (options) {
283
+ if (is.plainObject(options)) {
284
+ if (is.number(options.sigma) && is.inRange(options.sigma, 0.000001, 10)) {
285
+ this.options.sharpenSigma = options.sigma;
286
+ } else {
287
+ throw is.invalidParameterError('options.sigma', 'number between 0.000001 and 10', options.sigma);
288
+ }
289
+ if (is.defined(options.m1)) {
290
+ if (is.number(options.m1) && is.inRange(options.m1, 0, 1000000)) {
291
+ this.options.sharpenM1 = options.m1;
292
+ } else {
293
+ throw is.invalidParameterError('options.m1', 'number between 0 and 1000000', options.m1);
294
+ }
295
+ }
296
+ if (is.defined(options.m2)) {
297
+ if (is.number(options.m2) && is.inRange(options.m2, 0, 1000000)) {
298
+ this.options.sharpenM2 = options.m2;
299
+ } else {
300
+ throw is.invalidParameterError('options.m2', 'number between 0 and 1000000', options.m2);
301
+ }
302
+ }
303
+ if (is.defined(options.x1)) {
304
+ if (is.number(options.x1) && is.inRange(options.x1, 0, 1000000)) {
305
+ this.options.sharpenX1 = options.x1;
306
+ } else {
307
+ throw is.invalidParameterError('options.x1', 'number between 0 and 1000000', options.x1);
308
+ }
309
+ }
310
+ if (is.defined(options.y2)) {
311
+ if (is.number(options.y2) && is.inRange(options.y2, 0, 1000000)) {
312
+ this.options.sharpenY2 = options.y2;
313
+ } else {
314
+ throw is.invalidParameterError('options.y2', 'number between 0 and 1000000', options.y2);
315
+ }
316
+ }
317
+ if (is.defined(options.y3)) {
318
+ if (is.number(options.y3) && is.inRange(options.y3, 0, 1000000)) {
319
+ this.options.sharpenY3 = options.y3;
320
+ } else {
321
+ throw is.invalidParameterError('options.y3', 'number between 0 and 1000000', options.y3);
322
+ }
323
+ }
324
+ } else {
325
+ this.options.sharpenSigma = -1;
326
+ }
327
+ return this;
328
+ }
329
+
330
+ /**
331
+ * Apply median filter.
332
+ * When used without parameters the default window is 3x3.
333
+ *
334
+ * @example
335
+ * const output = await sharp(input).median().toBuffer();
336
+ *
337
+ * @example
338
+ * const output = await sharp(input).median(5).toBuffer();
339
+ *
340
+ * @param {number} [size=3] square mask size: size x size
341
+ * @returns {Sharp}
342
+ * @throws {Error} Invalid parameters
343
+ */
344
+ function median (size) {
345
+ if (!is.defined(size)) {
346
+ // No arguments: default to 3x3
347
+ this.options.medianSize = 3;
348
+ } else if (is.integer(size) && is.inRange(size, 1, 1000)) {
349
+ // Numeric argument: specific sigma
350
+ this.options.medianSize = size;
351
+ } else {
352
+ throw is.invalidParameterError('size', 'integer between 1 and 1000', size);
353
+ }
354
+ return this;
355
+ }
356
+
357
+ /**
358
+ * Blur the image.
359
+ *
360
+ * When used without parameters, performs a fast 3x3 box blur (equivalent to a box linear filter).
361
+ *
362
+ * When a `sigma` is provided, performs a slower, more accurate Gaussian blur.
363
+ *
364
+ * @example
365
+ * const boxBlurred = await sharp(input)
366
+ * .blur()
367
+ * .toBuffer();
368
+ *
369
+ * @example
370
+ * const gaussianBlurred = await sharp(input)
371
+ * .blur(5)
372
+ * .toBuffer();
373
+ *
374
+ * @param {Object|number|Boolean} [options]
375
+ * @param {number} [options.sigma] a value between 0.3 and 1000 representing the sigma of the Gaussian mask, where `sigma = 1 + radius / 2`.
376
+ * @param {string} [options.precision='integer'] How accurate the operation should be, one of: integer, float, approximate.
377
+ * @param {number} [options.minAmplitude=0.2] A value between 0.001 and 1. A smaller value will generate a larger, more accurate mask.
378
+ * @returns {Sharp}
379
+ * @throws {Error} Invalid parameters
380
+ */
381
+ function blur (options) {
382
+ let sigma;
383
+ if (is.number(options)) {
384
+ sigma = options;
385
+ } else if (is.plainObject(options)) {
386
+ if (!is.number(options.sigma)) {
387
+ throw is.invalidParameterError('options.sigma', 'number between 0.3 and 1000', sigma);
388
+ }
389
+ sigma = options.sigma;
390
+ if ('precision' in options) {
391
+ if (is.string(vipsPrecision[options.precision])) {
392
+ this.options.precision = vipsPrecision[options.precision];
393
+ } else {
394
+ throw is.invalidParameterError('precision', 'one of: integer, float, approximate', options.precision);
395
+ }
396
+ }
397
+ if ('minAmplitude' in options) {
398
+ if (is.number(options.minAmplitude) && is.inRange(options.minAmplitude, 0.001, 1)) {
399
+ this.options.minAmpl = options.minAmplitude;
400
+ } else {
401
+ throw is.invalidParameterError('minAmplitude', 'number between 0.001 and 1', options.minAmplitude);
402
+ }
403
+ }
404
+ }
405
+
406
+ if (!is.defined(options)) {
407
+ // No arguments: default to mild blur
408
+ this.options.blurSigma = -1;
409
+ } else if (is.bool(options)) {
410
+ // Boolean argument: apply mild blur?
411
+ this.options.blurSigma = options ? -1 : 0;
412
+ } else if (is.number(sigma) && is.inRange(sigma, 0.3, 1000)) {
413
+ // Numeric argument: specific sigma
414
+ this.options.blurSigma = sigma;
415
+ } else {
416
+ throw is.invalidParameterError('sigma', 'number between 0.3 and 1000', sigma);
417
+ }
418
+
419
+ return this;
420
+ }
421
+
422
+ /**
423
+ * Expand foreground objects using the dilate morphological operator.
424
+ *
425
+ * @example
426
+ * const output = await sharp(input)
427
+ * .dilate()
428
+ * .toBuffer();
429
+ *
430
+ * @param {Number} [width=1] dilation width in pixels.
431
+ * @returns {Sharp}
432
+ * @throws {Error} Invalid parameters
433
+ */
434
+ function dilate (width) {
435
+ if (!is.defined(width)) {
436
+ this.options.dilateWidth = 1;
437
+ } else if (is.integer(width) && is.inRange(width, 1, 65536)) {
438
+ this.options.dilateWidth = width;
439
+ } else {
440
+ throw is.invalidParameterError('width', 'integer between 1 and 65536', width);
441
+ }
442
+ return this;
443
+ }
444
+
445
+ /**
446
+ * Shrink foreground objects using the erode morphological operator.
447
+ *
448
+ * @example
449
+ * const output = await sharp(input)
450
+ * .erode()
451
+ * .toBuffer();
452
+ *
453
+ * @param {Number} [width=1] erosion width in pixels.
454
+ * @returns {Sharp}
455
+ * @throws {Error} Invalid parameters
456
+ */
457
+ function erode (width) {
458
+ if (!is.defined(width)) {
459
+ this.options.erodeWidth = 1;
460
+ } else if (is.integer(width) && is.inRange(width, 1, 65536)) {
461
+ this.options.erodeWidth = width;
462
+ } else {
463
+ throw is.invalidParameterError('width', 'integer between 1 and 65536', width);
464
+ }
465
+ return this;
466
+ }
467
+
468
+ /**
469
+ * Merge alpha transparency channel, if any, with a background, then remove the alpha channel.
470
+ *
471
+ * See also {@link /api-channel#removealpha removeAlpha}.
472
+ *
473
+ * @example
474
+ * await sharp(rgbaInput)
475
+ * .flatten({ background: '#F0A703' })
476
+ * .toBuffer();
477
+ *
478
+ * @param {Object} [options]
479
+ * @param {string|Object} [options.background={r: 0, g: 0, b: 0}] - background colour, parsed by the [color](https://www.npmjs.org/package/color) module, defaults to black.
480
+ * @returns {Sharp}
481
+ */
482
+ function flatten (options) {
483
+ this.options.flatten = is.bool(options) ? options : true;
484
+ if (is.object(options)) {
485
+ this._setBackgroundColourOption('flattenBackground', options.background);
486
+ }
487
+ return this;
488
+ }
489
+
490
+ /**
491
+ * Ensure the image has an alpha channel
492
+ * with all white pixel values made fully transparent.
493
+ *
494
+ * Existing alpha channel values for non-white pixels remain unchanged.
495
+ *
496
+ * @since 0.32.1
497
+ *
498
+ * @example
499
+ * await sharp(rgbInput)
500
+ * .unflatten()
501
+ * .toBuffer();
502
+ *
503
+ * @example
504
+ * await sharp(rgbInput)
505
+ * .threshold(128, { grayscale: false }) // converter bright pixels to white
506
+ * .unflatten()
507
+ * .toBuffer();
508
+ */
509
+ function unflatten () {
510
+ this.options.unflatten = true;
511
+ return this;
512
+ }
513
+
514
+ /**
515
+ * Apply a gamma correction by reducing the encoding (darken) pre-resize at a factor of `1/gamma`
516
+ * then increasing the encoding (brighten) post-resize at a factor of `gamma`.
517
+ * This can improve the perceived brightness of a resized image in non-linear colour spaces.
518
+ * JPEG and WebP input images will not take advantage of the shrink-on-load performance optimisation
519
+ * when applying a gamma correction.
520
+ *
521
+ * Supply a second argument to use a different output gamma value, otherwise the first value is used in both cases.
522
+ *
523
+ * @param {number} [gamma=2.2] value between 1.0 and 3.0.
524
+ * @param {number} [gammaOut] value between 1.0 and 3.0. (optional, defaults to same as `gamma`)
525
+ * @returns {Sharp}
526
+ * @throws {Error} Invalid parameters
527
+ */
528
+ function gamma (gamma, gammaOut) {
529
+ if (!is.defined(gamma)) {
530
+ // Default gamma correction of 2.2 (sRGB)
531
+ this.options.gamma = 2.2;
532
+ } else if (is.number(gamma) && is.inRange(gamma, 1, 3)) {
533
+ this.options.gamma = gamma;
534
+ } else {
535
+ throw is.invalidParameterError('gamma', 'number between 1.0 and 3.0', gamma);
536
+ }
537
+ if (!is.defined(gammaOut)) {
538
+ // Default gamma correction for output is same as input
539
+ this.options.gammaOut = this.options.gamma;
540
+ } else if (is.number(gammaOut) && is.inRange(gammaOut, 1, 3)) {
541
+ this.options.gammaOut = gammaOut;
542
+ } else {
543
+ throw is.invalidParameterError('gammaOut', 'number between 1.0 and 3.0', gammaOut);
544
+ }
545
+ return this;
546
+ }
547
+
548
+ /**
549
+ * Produce the "negative" of the image.
550
+ *
551
+ * @example
552
+ * const output = await sharp(input)
553
+ * .negate()
554
+ * .toBuffer();
555
+ *
556
+ * @example
557
+ * const output = await sharp(input)
558
+ * .negate({ alpha: false })
559
+ * .toBuffer();
560
+ *
561
+ * @param {Object} [options]
562
+ * @param {Boolean} [options.alpha=true] Whether or not to negate any alpha channel
563
+ * @returns {Sharp}
564
+ */
565
+ function negate (options) {
566
+ this.options.negate = is.bool(options) ? options : true;
567
+ if (is.plainObject(options) && 'alpha' in options) {
568
+ if (!is.bool(options.alpha)) {
569
+ throw is.invalidParameterError('alpha', 'should be boolean value', options.alpha);
570
+ } else {
571
+ this.options.negateAlpha = options.alpha;
572
+ }
573
+ }
574
+ return this;
575
+ }
576
+
577
+ /**
578
+ * Enhance output image contrast by stretching its luminance to cover a full dynamic range.
579
+ *
580
+ * Uses a histogram-based approach, taking a default range of 1% to 99% to reduce sensitivity to noise at the extremes.
581
+ *
582
+ * Luminance values below the `lower` percentile will be underexposed by clipping to zero.
583
+ * Luminance values above the `upper` percentile will be overexposed by clipping to the max pixel value.
584
+ *
585
+ * @example
586
+ * const output = await sharp(input)
587
+ * .normalise()
588
+ * .toBuffer();
589
+ *
590
+ * @example
591
+ * const output = await sharp(input)
592
+ * .normalise({ lower: 0, upper: 100 })
593
+ * .toBuffer();
594
+ *
595
+ * @param {Object} [options]
596
+ * @param {number} [options.lower=1] - Percentile below which luminance values will be underexposed.
597
+ * @param {number} [options.upper=99] - Percentile above which luminance values will be overexposed.
598
+ * @returns {Sharp}
599
+ */
600
+ function normalise (options) {
601
+ if (is.plainObject(options)) {
602
+ if (is.defined(options.lower)) {
603
+ if (is.number(options.lower) && is.inRange(options.lower, 0, 99)) {
604
+ this.options.normaliseLower = options.lower;
605
+ } else {
606
+ throw is.invalidParameterError('lower', 'number between 0 and 99', options.lower);
607
+ }
608
+ }
609
+ if (is.defined(options.upper)) {
610
+ if (is.number(options.upper) && is.inRange(options.upper, 1, 100)) {
611
+ this.options.normaliseUpper = options.upper;
612
+ } else {
613
+ throw is.invalidParameterError('upper', 'number between 1 and 100', options.upper);
614
+ }
615
+ }
616
+ }
617
+ if (this.options.normaliseLower >= this.options.normaliseUpper) {
618
+ throw is.invalidParameterError('range', 'lower to be less than upper',
619
+ `${this.options.normaliseLower} >= ${this.options.normaliseUpper}`);
620
+ }
621
+ this.options.normalise = true;
622
+ return this;
623
+ }
624
+
625
+ /**
626
+ * Alternative spelling of normalise.
627
+ *
628
+ * @example
629
+ * const output = await sharp(input)
630
+ * .normalize()
631
+ * .toBuffer();
632
+ *
633
+ * @param {Object} [options]
634
+ * @param {number} [options.lower=1] - Percentile below which luminance values will be underexposed.
635
+ * @param {number} [options.upper=99] - Percentile above which luminance values will be overexposed.
636
+ * @returns {Sharp}
637
+ */
638
+ function normalize (options) {
639
+ return this.normalise(options);
640
+ }
641
+
642
+ /**
643
+ * Perform contrast limiting adaptive histogram equalization
644
+ * {@link https://en.wikipedia.org/wiki/Adaptive_histogram_equalization#Contrast_Limited_AHE CLAHE}.
645
+ *
646
+ * This will, in general, enhance the clarity of the image by bringing out darker details.
647
+ *
648
+ * @since 0.28.3
649
+ *
650
+ * @example
651
+ * const output = await sharp(input)
652
+ * .clahe({
653
+ * width: 3,
654
+ * height: 3,
655
+ * })
656
+ * .toBuffer();
657
+ *
658
+ * @param {Object} options
659
+ * @param {number} options.width - Integral width of the search window, in pixels, between 1 and 65536.
660
+ * @param {number} options.height - Integral height of the search window, in pixels, between 1 and 65536.
661
+ * @param {number} [options.maxSlope=3] - Integral level of brightening, between 0 and 100, where 0 disables contrast limiting.
662
+ * @returns {Sharp}
663
+ * @throws {Error} Invalid parameters
664
+ */
665
+ function clahe (options) {
666
+ if (is.plainObject(options)) {
667
+ if (is.integer(options.width) && is.inRange(options.width, 1, 65536)) {
668
+ this.options.claheWidth = options.width;
669
+ } else {
670
+ throw is.invalidParameterError('width', 'integer between 1 and 65536', options.width);
671
+ }
672
+ if (is.integer(options.height) && is.inRange(options.height, 1, 65536)) {
673
+ this.options.claheHeight = options.height;
674
+ } else {
675
+ throw is.invalidParameterError('height', 'integer between 1 and 65536', options.height);
676
+ }
677
+ if (is.defined(options.maxSlope)) {
678
+ if (is.integer(options.maxSlope) && is.inRange(options.maxSlope, 0, 100)) {
679
+ this.options.claheMaxSlope = options.maxSlope;
680
+ } else {
681
+ throw is.invalidParameterError('maxSlope', 'integer between 0 and 100', options.maxSlope);
682
+ }
683
+ }
684
+ } else {
685
+ throw is.invalidParameterError('options', 'plain object', options);
686
+ }
687
+ return this;
688
+ }
689
+
690
+ /**
691
+ * Convolve the image with the specified kernel.
692
+ *
693
+ * @example
694
+ * sharp(input)
695
+ * .convolve({
696
+ * width: 3,
697
+ * height: 3,
698
+ * kernel: [-1, 0, 1, -2, 0, 2, -1, 0, 1]
699
+ * })
700
+ * .raw()
701
+ * .toBuffer(function(err, data, info) {
702
+ * // data contains the raw pixel data representing the convolution
703
+ * // of the input image with the horizontal Sobel operator
704
+ * });
705
+ *
706
+ * @param {Object} kernel
707
+ * @param {number} kernel.width - width of the kernel in pixels.
708
+ * @param {number} kernel.height - height of the kernel in pixels.
709
+ * @param {Array<number>} kernel.kernel - Array of length `width*height` containing the kernel values.
710
+ * @param {number} [kernel.scale=sum] - the scale of the kernel in pixels.
711
+ * @param {number} [kernel.offset=0] - the offset of the kernel in pixels.
712
+ * @returns {Sharp}
713
+ * @throws {Error} Invalid parameters
714
+ */
715
+ function convolve (kernel) {
716
+ if (!is.object(kernel) || !Array.isArray(kernel.kernel) ||
717
+ !is.integer(kernel.width) || !is.integer(kernel.height) ||
718
+ !is.inRange(kernel.width, 3, 1001) || !is.inRange(kernel.height, 3, 1001) ||
719
+ kernel.height * kernel.width !== kernel.kernel.length ||
720
+ !kernel.kernel.every(is.number)
721
+ ) {
722
+ // must pass in a kernel
723
+ throw new Error('Invalid convolution kernel');
724
+ }
725
+ // Default scale is sum of kernel values
726
+ if (!is.integer(kernel.scale)) {
727
+ kernel.scale = kernel.kernel.reduce((a, b) => a + b, 0);
728
+ }
729
+ // Clip scale to a minimum value of 1
730
+ if (kernel.scale < 1) {
731
+ kernel.scale = 1;
732
+ }
733
+ if (!is.integer(kernel.offset)) {
734
+ kernel.offset = 0;
735
+ }
736
+ this.options.convKernel = kernel;
737
+ return this;
738
+ }
739
+
740
+ /**
741
+ * Any pixel value greater than or equal to the threshold value will be set to 255, otherwise it will be set to 0.
742
+ * @param {number} [threshold=128] - a value in the range 0-255 representing the level at which the threshold will be applied.
743
+ * @param {Object} [options]
744
+ * @param {Boolean} [options.greyscale=true] - convert to single channel greyscale.
745
+ * @param {Boolean} [options.grayscale=true] - alternative spelling for greyscale.
746
+ * @returns {Sharp}
747
+ * @throws {Error} Invalid parameters
748
+ */
749
+ function threshold (threshold, options) {
750
+ if (!is.defined(threshold)) {
751
+ this.options.threshold = 128;
752
+ } else if (is.bool(threshold)) {
753
+ this.options.threshold = threshold ? 128 : 0;
754
+ } else if (is.integer(threshold) && is.inRange(threshold, 0, 255)) {
755
+ this.options.threshold = threshold;
756
+ } else {
757
+ throw is.invalidParameterError('threshold', 'integer between 0 and 255', threshold);
758
+ }
759
+ if (!is.object(options) || options.greyscale === true || options.grayscale === true) {
760
+ this.options.thresholdGrayscale = true;
761
+ } else {
762
+ this.options.thresholdGrayscale = false;
763
+ }
764
+ return this;
765
+ }
766
+
767
+ /**
768
+ * Perform a bitwise boolean operation with operand image.
769
+ *
770
+ * This operation creates an output image where each pixel is the result of
771
+ * the selected bitwise boolean `operation` between the corresponding pixels of the input images.
772
+ *
773
+ * @param {Buffer|string} operand - Buffer containing image data or string containing the path to an image file.
774
+ * @param {string} operator - one of `and`, `or` or `eor` to perform that bitwise operation, like the C logic operators `&`, `|` and `^` respectively.
775
+ * @param {Object} [options]
776
+ * @param {Object} [options.raw] - describes operand when using raw pixel data.
777
+ * @param {number} [options.raw.width]
778
+ * @param {number} [options.raw.height]
779
+ * @param {number} [options.raw.channels]
780
+ * @returns {Sharp}
781
+ * @throws {Error} Invalid parameters
782
+ */
783
+ function boolean (operand, operator, options) {
784
+ this.options.boolean = this._createInputDescriptor(operand, options);
785
+ if (is.string(operator) && is.inArray(operator, ['and', 'or', 'eor'])) {
786
+ this.options.booleanOp = operator;
787
+ } else {
788
+ throw is.invalidParameterError('operator', 'one of: and, or, eor', operator);
789
+ }
790
+ return this;
791
+ }
792
+
793
+ /**
794
+ * Apply the linear formula `a` * input + `b` to the image to adjust image levels.
795
+ *
796
+ * When a single number is provided, it will be used for all image channels.
797
+ * When an array of numbers is provided, the array length must match the number of channels.
798
+ *
799
+ * @example
800
+ * await sharp(input)
801
+ * .linear(0.5, 2)
802
+ * .toBuffer();
803
+ *
804
+ * @example
805
+ * await sharp(rgbInput)
806
+ * .linear(
807
+ * [0.25, 0.5, 0.75],
808
+ * [150, 100, 50]
809
+ * )
810
+ * .toBuffer();
811
+ *
812
+ * @param {(number|number[])} [a=[]] multiplier
813
+ * @param {(number|number[])} [b=[]] offset
814
+ * @returns {Sharp}
815
+ * @throws {Error} Invalid parameters
816
+ */
817
+ function linear (a, b) {
818
+ if (!is.defined(a) && is.number(b)) {
819
+ a = 1.0;
820
+ } else if (is.number(a) && !is.defined(b)) {
821
+ b = 0.0;
822
+ }
823
+ if (!is.defined(a)) {
824
+ this.options.linearA = [];
825
+ } else if (is.number(a)) {
826
+ this.options.linearA = [a];
827
+ } else if (Array.isArray(a) && a.length && a.every(is.number)) {
828
+ this.options.linearA = a;
829
+ } else {
830
+ throw is.invalidParameterError('a', 'number or array of numbers', a);
831
+ }
832
+ if (!is.defined(b)) {
833
+ this.options.linearB = [];
834
+ } else if (is.number(b)) {
835
+ this.options.linearB = [b];
836
+ } else if (Array.isArray(b) && b.length && b.every(is.number)) {
837
+ this.options.linearB = b;
838
+ } else {
839
+ throw is.invalidParameterError('b', 'number or array of numbers', b);
840
+ }
841
+ if (this.options.linearA.length !== this.options.linearB.length) {
842
+ throw new Error('Expected a and b to be arrays of the same length');
843
+ }
844
+ return this;
845
+ }
846
+
847
+ /**
848
+ * Recombine the image with the specified matrix.
849
+ *
850
+ * @since 0.21.1
851
+ *
852
+ * @example
853
+ * sharp(input)
854
+ * .recomb([
855
+ * [0.3588, 0.7044, 0.1368],
856
+ * [0.2990, 0.5870, 0.1140],
857
+ * [0.2392, 0.4696, 0.0912],
858
+ * ])
859
+ * .raw()
860
+ * .toBuffer(function(err, data, info) {
861
+ * // data contains the raw pixel data after applying the matrix
862
+ * // With this example input, a sepia filter has been applied
863
+ * });
864
+ *
865
+ * @param {Array<Array<number>>} inputMatrix - 3x3 or 4x4 Recombination matrix
866
+ * @returns {Sharp}
867
+ * @throws {Error} Invalid parameters
868
+ */
869
+ function recomb (inputMatrix) {
870
+ if (!Array.isArray(inputMatrix)) {
871
+ throw is.invalidParameterError('inputMatrix', 'array', inputMatrix);
872
+ }
873
+ const dimensions = inputMatrix.length;
874
+ if (dimensions !== 3 && dimensions !== 4) {
875
+ throw is.invalidParameterError('inputMatrix', '3x3 or 4x4 array', dimensions);
876
+ }
877
+ if (!inputMatrix.every((row) => Array.isArray(row) && row.length === dimensions)) {
878
+ throw is.invalidParameterError('inputMatrix', `array of ${dimensions} arrays of length ${dimensions}`, inputMatrix);
879
+ }
880
+ const recombMatrix = inputMatrix.flat();
881
+ if (!recombMatrix.every(is.number)) {
882
+ throw is.invalidParameterError('inputMatrix', 'array of numbers', recombMatrix);
883
+ }
884
+ this.options.recombMatrix = recombMatrix;
885
+ return this;
886
+ }
887
+
888
+ /**
889
+ * Transforms the image using brightness, saturation, hue rotation, and lightness.
890
+ * Brightness and lightness both operate on luminance, with the difference being that
891
+ * brightness is multiplicative whereas lightness is additive.
892
+ *
893
+ * @since 0.22.1
894
+ *
895
+ * @example
896
+ * // increase brightness by a factor of 2
897
+ * const output = await sharp(input)
898
+ * .modulate({
899
+ * brightness: 2
900
+ * })
901
+ * .toBuffer();
902
+ *
903
+ * @example
904
+ * // hue-rotate by 180 degrees
905
+ * const output = await sharp(input)
906
+ * .modulate({
907
+ * hue: 180
908
+ * })
909
+ * .toBuffer();
910
+ *
911
+ * @example
912
+ * // increase lightness by +50
913
+ * const output = await sharp(input)
914
+ * .modulate({
915
+ * lightness: 50
916
+ * })
917
+ * .toBuffer();
918
+ *
919
+ * @example
920
+ * // decrease brightness and saturation while also hue-rotating by 90 degrees
921
+ * const output = await sharp(input)
922
+ * .modulate({
923
+ * brightness: 0.5,
924
+ * saturation: 0.5,
925
+ * hue: 90,
926
+ * })
927
+ * .toBuffer();
928
+ *
929
+ * @param {Object} [options]
930
+ * @param {number} [options.brightness] Brightness multiplier
931
+ * @param {number} [options.saturation] Saturation multiplier
932
+ * @param {number} [options.hue] Degrees for hue rotation
933
+ * @param {number} [options.lightness] Lightness addend
934
+ * @returns {Sharp}
935
+ */
936
+ function modulate (options) {
937
+ if (!is.plainObject(options)) {
938
+ throw is.invalidParameterError('options', 'plain object', options);
939
+ }
940
+ if ('brightness' in options) {
941
+ if (is.number(options.brightness) && options.brightness >= 0) {
942
+ this.options.brightness = options.brightness;
943
+ } else {
944
+ throw is.invalidParameterError('brightness', 'number above zero', options.brightness);
945
+ }
946
+ }
947
+ if ('saturation' in options) {
948
+ if (is.number(options.saturation) && options.saturation >= 0) {
949
+ this.options.saturation = options.saturation;
950
+ } else {
951
+ throw is.invalidParameterError('saturation', 'number above zero', options.saturation);
952
+ }
953
+ }
954
+ if ('hue' in options) {
955
+ if (is.integer(options.hue)) {
956
+ this.options.hue = options.hue % 360;
957
+ } else {
958
+ throw is.invalidParameterError('hue', 'number', options.hue);
959
+ }
960
+ }
961
+ if ('lightness' in options) {
962
+ if (is.number(options.lightness)) {
963
+ this.options.lightness = options.lightness;
964
+ } else {
965
+ throw is.invalidParameterError('lightness', 'number', options.lightness);
966
+ }
967
+ }
968
+ return this;
969
+ }
970
+
971
+ /**
972
+ * Decorate the Sharp prototype with operation-related functions.
973
+ * @module Sharp
974
+ * @private
975
+ */
976
+ export default (Sharp) => {
977
+ Object.assign(Sharp.prototype, {
978
+ autoOrient,
979
+ rotate,
980
+ flip,
981
+ flop,
982
+ affine,
983
+ sharpen,
984
+ erode,
985
+ dilate,
986
+ median,
987
+ blur,
988
+ flatten,
989
+ unflatten,
990
+ gamma,
991
+ negate,
992
+ normalise,
993
+ normalize,
994
+ clahe,
995
+ convolve,
996
+ threshold,
997
+ boolean,
998
+ linear,
999
+ recomb,
1000
+ modulate
1001
+ });
1002
+ };