bangonit 0.5.7 → 0.5.8

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 (93) hide show
  1. package/README.md +22 -0
  2. package/app/webapp/.next/standalone/app/webapp/.next/BUILD_ID +1 -1
  3. package/app/webapp/.next/standalone/app/webapp/.next/app-build-manifest.json +11 -11
  4. package/app/webapp/.next/standalone/app/webapp/.next/app-path-routes-manifest.json +1 -1
  5. package/app/webapp/.next/standalone/app/webapp/.next/build-manifest.json +3 -3
  6. package/app/webapp/.next/standalone/app/webapp/.next/prerender-manifest.json +1 -1
  7. package/app/webapp/.next/standalone/app/webapp/.next/required-server-files.json +1 -1
  8. package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found/page.js +1 -1
  9. package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  10. package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found.html +1 -1
  11. package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found.rsc +1 -1
  12. package/app/webapp/.next/standalone/app/webapp/.next/server/app/api/chat/route.js +1 -1
  13. package/app/webapp/.next/standalone/app/webapp/.next/server/app/api/screenshot/route.js +1 -1
  14. package/app/webapp/.next/standalone/app/webapp/.next/server/app/app/page.js +5 -5
  15. package/app/webapp/.next/standalone/app/webapp/.next/server/app/app/page_client-reference-manifest.js +1 -1
  16. package/app/webapp/.next/standalone/app/webapp/.next/server/app/app.html +1 -1
  17. package/app/webapp/.next/standalone/app/webapp/.next/server/app/app.rsc +2 -2
  18. package/app/webapp/.next/standalone/app/webapp/.next/server/app/index.html +1 -1
  19. package/app/webapp/.next/standalone/app/webapp/.next/server/app/index.rsc +1 -1
  20. package/app/webapp/.next/standalone/app/webapp/.next/server/app/page.js +1 -1
  21. package/app/webapp/.next/standalone/app/webapp/.next/server/app/page_client-reference-manifest.js +1 -1
  22. package/app/webapp/.next/standalone/app/webapp/.next/server/app-paths-manifest.json +3 -3
  23. package/app/webapp/.next/standalone/app/webapp/.next/server/chunks/679.js +1 -1
  24. package/app/webapp/.next/standalone/app/webapp/.next/server/middleware-build-manifest.js +1 -1
  25. package/app/webapp/.next/standalone/app/webapp/.next/server/pages/404.html +1 -1
  26. package/app/webapp/.next/standalone/app/webapp/.next/server/pages/500.html +1 -1
  27. package/app/webapp/.next/standalone/app/webapp/.next/server/server-reference-manifest.json +1 -1
  28. package/app/webapp/.next/{static/chunks/app/app/page-f4f042a34d2b4471.js → standalone/app/webapp/.next/static/chunks/app/app/page-4c6dfbf12230aab7.js} +1 -1
  29. package/app/webapp/.next/standalone/app/webapp/.next/static/chunks/app/layout-57acb80d8da0067a.js +1 -0
  30. package/app/webapp/.next/standalone/app/webapp/.next/static/chunks/{main-app-76384b941f0b51cb.js → main-app-106dd83f859b9dfa.js} +1 -1
  31. package/app/webapp/.next/standalone/app/webapp/server.js +1 -1
  32. package/app/webapp/.next/standalone/node_modules/@img/colour/color.cjs +1596 -0
  33. package/app/webapp/.next/standalone/node_modules/@img/colour/index.cjs +1 -0
  34. package/app/webapp/.next/standalone/node_modules/@img/colour/package.json +58 -0
  35. package/app/webapp/.next/standalone/node_modules/@img/sharp-darwin-arm64/LICENSE +191 -0
  36. package/app/webapp/.next/standalone/node_modules/@img/sharp-darwin-arm64/lib/sharp-darwin-arm64.node +0 -0
  37. package/app/webapp/.next/standalone/node_modules/@img/sharp-darwin-arm64/package.json +40 -0
  38. package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/lib/index.js +1 -0
  39. package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/lib/libvips-cpp.8.17.3.dylib +0 -0
  40. package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/package.json +36 -0
  41. package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/versions.json +30 -0
  42. package/app/webapp/.next/standalone/node_modules/detect-libc/lib/detect-libc.js +313 -0
  43. package/app/webapp/.next/standalone/node_modules/detect-libc/lib/elf.js +39 -0
  44. package/app/webapp/.next/standalone/node_modules/detect-libc/lib/filesystem.js +51 -0
  45. package/app/webapp/.next/standalone/node_modules/detect-libc/lib/process.js +24 -0
  46. package/app/webapp/.next/standalone/node_modules/detect-libc/package.json +44 -0
  47. package/app/webapp/.next/standalone/node_modules/sharp/lib/channel.js +177 -0
  48. package/app/webapp/.next/standalone/node_modules/sharp/lib/colour.js +195 -0
  49. package/app/webapp/.next/standalone/node_modules/sharp/lib/composite.js +212 -0
  50. package/app/webapp/.next/standalone/node_modules/sharp/lib/constructor.js +499 -0
  51. package/app/webapp/.next/standalone/node_modules/sharp/lib/index.js +16 -0
  52. package/app/webapp/.next/standalone/node_modules/sharp/lib/input.js +809 -0
  53. package/app/webapp/.next/standalone/node_modules/sharp/lib/is.js +143 -0
  54. package/app/webapp/.next/standalone/node_modules/sharp/lib/libvips.js +207 -0
  55. package/app/webapp/.next/standalone/node_modules/sharp/lib/operation.js +1016 -0
  56. package/app/webapp/.next/standalone/node_modules/sharp/lib/output.js +1666 -0
  57. package/app/webapp/.next/standalone/node_modules/sharp/lib/resize.js +595 -0
  58. package/app/webapp/.next/standalone/node_modules/sharp/lib/sharp.js +121 -0
  59. package/app/webapp/.next/standalone/node_modules/sharp/lib/utility.js +291 -0
  60. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/classes/comparator.js +143 -0
  61. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/classes/range.js +557 -0
  62. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/classes/semver.js +333 -0
  63. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/cmp.js +54 -0
  64. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/coerce.js +62 -0
  65. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/compare.js +7 -0
  66. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/eq.js +5 -0
  67. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/gt.js +5 -0
  68. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/gte.js +5 -0
  69. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/lt.js +5 -0
  70. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/lte.js +5 -0
  71. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/neq.js +5 -0
  72. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/parse.js +18 -0
  73. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/satisfies.js +12 -0
  74. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/constants.js +37 -0
  75. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/debug.js +11 -0
  76. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/identifiers.js +29 -0
  77. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/lrucache.js +42 -0
  78. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/parse-options.js +17 -0
  79. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/re.js +223 -0
  80. package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/package.json +78 -0
  81. package/app/webapp/.next/standalone/node_modules/sharp/package.json +202 -0
  82. package/app/webapp/.next/standalone/package.json +5 -3
  83. package/app/webapp/.next/{standalone/app/webapp/.next/static/chunks/app/app/page-f4f042a34d2b4471.js → static/chunks/app/app/page-4c6dfbf12230aab7.js} +1 -1
  84. package/app/webapp/.next/static/chunks/app/layout-57acb80d8da0067a.js +1 -0
  85. package/app/webapp/.next/static/chunks/{main-app-76384b941f0b51cb.js → main-app-106dd83f859b9dfa.js} +1 -1
  86. package/bin/src/cli/bangonit.js +274 -0
  87. package/package.json +5 -3
  88. package/app/webapp/.next/standalone/app/webapp/.next/static/chunks/app/layout-40f50d9380154ecf.js +0 -1
  89. package/app/webapp/.next/static/chunks/app/layout-40f50d9380154ecf.js +0 -1
  90. /package/app/webapp/.next/standalone/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_buildManifest.js +0 -0
  91. /package/app/webapp/.next/standalone/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_ssgManifest.js +0 -0
  92. /package/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_buildManifest.js +0 -0
  93. /package/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_ssgManifest.js +0 -0
@@ -0,0 +1,39 @@
1
+ // Copyright 2017 Lovell Fuller and others.
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ 'use strict';
5
+
6
+ const interpreterPath = (elf) => {
7
+ if (elf.length < 64) {
8
+ return null;
9
+ }
10
+ if (elf.readUInt32BE(0) !== 0x7F454C46) {
11
+ // Unexpected magic bytes
12
+ return null;
13
+ }
14
+ if (elf.readUInt8(4) !== 2) {
15
+ // Not a 64-bit ELF
16
+ return null;
17
+ }
18
+ if (elf.readUInt8(5) !== 1) {
19
+ // Not little-endian
20
+ return null;
21
+ }
22
+ const offset = elf.readUInt32LE(32);
23
+ const size = elf.readUInt16LE(54);
24
+ const count = elf.readUInt16LE(56);
25
+ for (let i = 0; i < count; i++) {
26
+ const headerOffset = offset + (i * size);
27
+ const type = elf.readUInt32LE(headerOffset);
28
+ if (type === 3) {
29
+ const fileOffset = elf.readUInt32LE(headerOffset + 8);
30
+ const fileSize = elf.readUInt32LE(headerOffset + 32);
31
+ return elf.subarray(fileOffset, fileOffset + fileSize).toString().replace(/\0.*$/g, '');
32
+ }
33
+ }
34
+ return null;
35
+ };
36
+
37
+ module.exports = {
38
+ interpreterPath
39
+ };
@@ -0,0 +1,51 @@
1
+ // Copyright 2017 Lovell Fuller and others.
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ 'use strict';
5
+
6
+ const fs = require('fs');
7
+
8
+ const LDD_PATH = '/usr/bin/ldd';
9
+ const SELF_PATH = '/proc/self/exe';
10
+ const MAX_LENGTH = 2048;
11
+
12
+ /**
13
+ * Read the content of a file synchronous
14
+ *
15
+ * @param {string} path
16
+ * @returns {Buffer}
17
+ */
18
+ const readFileSync = (path) => {
19
+ const fd = fs.openSync(path, 'r');
20
+ const buffer = Buffer.alloc(MAX_LENGTH);
21
+ const bytesRead = fs.readSync(fd, buffer, 0, MAX_LENGTH, 0);
22
+ fs.close(fd, () => {});
23
+ return buffer.subarray(0, bytesRead);
24
+ };
25
+
26
+ /**
27
+ * Read the content of a file
28
+ *
29
+ * @param {string} path
30
+ * @returns {Promise<Buffer>}
31
+ */
32
+ const readFile = (path) => new Promise((resolve, reject) => {
33
+ fs.open(path, 'r', (err, fd) => {
34
+ if (err) {
35
+ reject(err);
36
+ } else {
37
+ const buffer = Buffer.alloc(MAX_LENGTH);
38
+ fs.read(fd, buffer, 0, MAX_LENGTH, 0, (_, bytesRead) => {
39
+ resolve(buffer.subarray(0, bytesRead));
40
+ fs.close(fd, () => {});
41
+ });
42
+ }
43
+ });
44
+ });
45
+
46
+ module.exports = {
47
+ LDD_PATH,
48
+ SELF_PATH,
49
+ readFileSync,
50
+ readFile
51
+ };
@@ -0,0 +1,24 @@
1
+ // Copyright 2017 Lovell Fuller and others.
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ 'use strict';
5
+
6
+ const isLinux = () => process.platform === 'linux';
7
+
8
+ let report = null;
9
+ const getReport = () => {
10
+ if (!report) {
11
+ /* istanbul ignore next */
12
+ if (isLinux() && process.report) {
13
+ const orig = process.report.excludeNetwork;
14
+ process.report.excludeNetwork = true;
15
+ report = process.report.getReport();
16
+ process.report.excludeNetwork = orig;
17
+ } else {
18
+ report = {};
19
+ }
20
+ }
21
+ return report;
22
+ };
23
+
24
+ module.exports = { isLinux, getReport };
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "detect-libc",
3
+ "version": "2.1.2",
4
+ "description": "Node.js module to detect the C standard library (libc) implementation family and version",
5
+ "main": "lib/detect-libc.js",
6
+ "files": [
7
+ "lib/",
8
+ "index.d.ts"
9
+ ],
10
+ "scripts": {
11
+ "test": "semistandard && nyc --reporter=text --check-coverage --branches=100 ava test/unit.js",
12
+ "changelog": "conventional-changelog -i CHANGELOG.md -s",
13
+ "bench": "node benchmark/detect-libc",
14
+ "bench:calls": "node benchmark/call-familySync.js && sleep 1 && node benchmark/call-isNonGlibcLinuxSync.js && sleep 1 && node benchmark/call-versionSync.js"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git://github.com/lovell/detect-libc.git"
19
+ },
20
+ "keywords": [
21
+ "libc",
22
+ "glibc",
23
+ "musl"
24
+ ],
25
+ "author": "Lovell Fuller <npm@lovell.info>",
26
+ "contributors": [
27
+ "Niklas Salmoukas <niklas@salmoukas.com>",
28
+ "Vinícius Lourenço <vinyygamerlol@gmail.com>"
29
+ ],
30
+ "license": "Apache-2.0",
31
+ "devDependencies": {
32
+ "ava": "^2.4.0",
33
+ "benchmark": "^2.1.4",
34
+ "conventional-changelog-cli": "^5.0.0",
35
+ "eslint-config-standard": "^13.0.1",
36
+ "nyc": "^15.1.0",
37
+ "proxyquire": "^2.1.3",
38
+ "semistandard": "^14.2.3"
39
+ },
40
+ "engines": {
41
+ "node": ">=8"
42
+ },
43
+ "types": "index.d.ts"
44
+ }
@@ -0,0 +1,177 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ const is = require('./is');
7
+
8
+ /**
9
+ * Boolean operations for bandbool.
10
+ * @private
11
+ */
12
+ const bool = {
13
+ and: 'and',
14
+ or: 'or',
15
+ eor: 'eor'
16
+ };
17
+
18
+ /**
19
+ * Remove alpha channels, if any. This is a no-op if the image does not have an alpha channel.
20
+ *
21
+ * See also {@link /api-operation/#flatten flatten}.
22
+ *
23
+ * @example
24
+ * sharp('rgba.png')
25
+ * .removeAlpha()
26
+ * .toFile('rgb.png', function(err, info) {
27
+ * // rgb.png is a 3 channel image without an alpha channel
28
+ * });
29
+ *
30
+ * @returns {Sharp}
31
+ */
32
+ function removeAlpha () {
33
+ this.options.removeAlpha = true;
34
+ return this;
35
+ }
36
+
37
+ /**
38
+ * Ensure the output image has an alpha transparency channel.
39
+ * If missing, the added alpha channel will have the specified
40
+ * transparency level, defaulting to fully-opaque (1).
41
+ * This is a no-op if the image already has an alpha channel.
42
+ *
43
+ * @since 0.21.2
44
+ *
45
+ * @example
46
+ * // rgba.png will be a 4 channel image with a fully-opaque alpha channel
47
+ * await sharp('rgb.jpg')
48
+ * .ensureAlpha()
49
+ * .toFile('rgba.png')
50
+ *
51
+ * @example
52
+ * // rgba is a 4 channel image with a fully-transparent alpha channel
53
+ * const rgba = await sharp(rgb)
54
+ * .ensureAlpha(0)
55
+ * .toBuffer();
56
+ *
57
+ * @param {number} [alpha=1] - alpha transparency level (0=fully-transparent, 1=fully-opaque)
58
+ * @returns {Sharp}
59
+ * @throws {Error} Invalid alpha transparency level
60
+ */
61
+ function ensureAlpha (alpha) {
62
+ if (is.defined(alpha)) {
63
+ if (is.number(alpha) && is.inRange(alpha, 0, 1)) {
64
+ this.options.ensureAlpha = alpha;
65
+ } else {
66
+ throw is.invalidParameterError('alpha', 'number between 0 and 1', alpha);
67
+ }
68
+ } else {
69
+ this.options.ensureAlpha = 1;
70
+ }
71
+ return this;
72
+ }
73
+
74
+ /**
75
+ * Extract a single channel from a multi-channel image.
76
+ *
77
+ * The output colourspace will be either `b-w` (8-bit) or `grey16` (16-bit).
78
+ *
79
+ * @example
80
+ * // green.jpg is a greyscale image containing the green channel of the input
81
+ * await sharp(input)
82
+ * .extractChannel('green')
83
+ * .toFile('green.jpg');
84
+ *
85
+ * @example
86
+ * // red1 is the red value of the first pixel, red2 the second pixel etc.
87
+ * const [red1, red2, ...] = await sharp(input)
88
+ * .extractChannel(0)
89
+ * .raw()
90
+ * .toBuffer();
91
+ *
92
+ * @param {number|string} channel - zero-indexed channel/band number to extract, or `red`, `green`, `blue` or `alpha`.
93
+ * @returns {Sharp}
94
+ * @throws {Error} Invalid channel
95
+ */
96
+ function extractChannel (channel) {
97
+ const channelMap = { red: 0, green: 1, blue: 2, alpha: 3 };
98
+ if (Object.keys(channelMap).includes(channel)) {
99
+ channel = channelMap[channel];
100
+ }
101
+ if (is.integer(channel) && is.inRange(channel, 0, 4)) {
102
+ this.options.extractChannel = channel;
103
+ } else {
104
+ throw is.invalidParameterError('channel', 'integer or one of: red, green, blue, alpha', channel);
105
+ }
106
+ return this;
107
+ }
108
+
109
+ /**
110
+ * Join one or more channels to the image.
111
+ * The meaning of the added channels depends on the output colourspace, set with `toColourspace()`.
112
+ * By default the output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
113
+ * Channel ordering follows vips convention:
114
+ * - sRGB: 0: Red, 1: Green, 2: Blue, 3: Alpha.
115
+ * - CMYK: 0: Magenta, 1: Cyan, 2: Yellow, 3: Black, 4: Alpha.
116
+ *
117
+ * Buffers may be any of the image formats supported by sharp.
118
+ * For raw pixel input, the `options` object should contain a `raw` attribute, which follows the format of the attribute of the same name in the `sharp()` constructor.
119
+ *
120
+ * @param {Array<string|Buffer>|string|Buffer} images - one or more images (file paths, Buffers).
121
+ * @param {Object} options - image options, see `sharp()` constructor.
122
+ * @returns {Sharp}
123
+ * @throws {Error} Invalid parameters
124
+ */
125
+ function joinChannel (images, options) {
126
+ if (Array.isArray(images)) {
127
+ images.forEach(function (image) {
128
+ this.options.joinChannelIn.push(this._createInputDescriptor(image, options));
129
+ }, this);
130
+ } else {
131
+ this.options.joinChannelIn.push(this._createInputDescriptor(images, options));
132
+ }
133
+ return this;
134
+ }
135
+
136
+ /**
137
+ * Perform a bitwise boolean operation on all input image channels (bands) to produce a single channel output image.
138
+ *
139
+ * @example
140
+ * sharp('3-channel-rgb-input.png')
141
+ * .bandbool(sharp.bool.and)
142
+ * .toFile('1-channel-output.png', function (err, info) {
143
+ * // The output will be a single channel image where each pixel `P = R & G & B`.
144
+ * // If `I(1,1) = [247, 170, 14] = [0b11110111, 0b10101010, 0b00001111]`
145
+ * // then `O(1,1) = 0b11110111 & 0b10101010 & 0b00001111 = 0b00000010 = 2`.
146
+ * });
147
+ *
148
+ * @param {string} boolOp - one of `and`, `or` or `eor` to perform that bitwise operation, like the C logic operators `&`, `|` and `^` respectively.
149
+ * @returns {Sharp}
150
+ * @throws {Error} Invalid parameters
151
+ */
152
+ function bandbool (boolOp) {
153
+ if (is.string(boolOp) && is.inArray(boolOp, ['and', 'or', 'eor'])) {
154
+ this.options.bandBoolOp = boolOp;
155
+ } else {
156
+ throw is.invalidParameterError('boolOp', 'one of: and, or, eor', boolOp);
157
+ }
158
+ return this;
159
+ }
160
+
161
+ /**
162
+ * Decorate the Sharp prototype with channel-related functions.
163
+ * @module Sharp
164
+ * @private
165
+ */
166
+ module.exports = (Sharp) => {
167
+ Object.assign(Sharp.prototype, {
168
+ // Public instance functions
169
+ removeAlpha,
170
+ ensureAlpha,
171
+ extractChannel,
172
+ joinChannel,
173
+ bandbool
174
+ });
175
+ // Class attributes
176
+ Sharp.bool = bool;
177
+ };
@@ -0,0 +1,195 @@
1
+ /*!
2
+ Copyright 2013 Lovell Fuller and others.
3
+ SPDX-License-Identifier: Apache-2.0
4
+ */
5
+
6
+ const color = require('@img/colour');
7
+ const is = require('./is');
8
+
9
+ /**
10
+ * Colourspaces.
11
+ * @private
12
+ */
13
+ const colourspace = {
14
+ multiband: 'multiband',
15
+ 'b-w': 'b-w',
16
+ bw: 'b-w',
17
+ cmyk: 'cmyk',
18
+ srgb: 'srgb'
19
+ };
20
+
21
+ /**
22
+ * Tint the image using the provided colour.
23
+ * An alpha channel may be present and will be unchanged by the operation.
24
+ *
25
+ * @example
26
+ * const output = await sharp(input)
27
+ * .tint({ r: 255, g: 240, b: 16 })
28
+ * .toBuffer();
29
+ *
30
+ * @param {string|Object} tint - Parsed by the [color](https://www.npmjs.org/package/color) module.
31
+ * @returns {Sharp}
32
+ * @throws {Error} Invalid parameter
33
+ */
34
+ function tint (tint) {
35
+ this._setBackgroundColourOption('tint', tint);
36
+ return this;
37
+ }
38
+
39
+ /**
40
+ * Convert to 8-bit greyscale; 256 shades of grey.
41
+ * This is a linear operation. If the input image is in a non-linear colour space such as sRGB, use `gamma()` with `greyscale()` for the best results.
42
+ * By default the output image will be web-friendly sRGB and contain three (identical) colour channels.
43
+ * This may be overridden by other sharp operations such as `toColourspace('b-w')`,
44
+ * which will produce an output image containing one colour channel.
45
+ * An alpha channel may be present, and will be unchanged by the operation.
46
+ *
47
+ * @example
48
+ * const output = await sharp(input).greyscale().toBuffer();
49
+ *
50
+ * @param {Boolean} [greyscale=true]
51
+ * @returns {Sharp}
52
+ */
53
+ function greyscale (greyscale) {
54
+ this.options.greyscale = is.bool(greyscale) ? greyscale : true;
55
+ return this;
56
+ }
57
+
58
+ /**
59
+ * Alternative spelling of `greyscale`.
60
+ * @param {Boolean} [grayscale=true]
61
+ * @returns {Sharp}
62
+ */
63
+ function grayscale (grayscale) {
64
+ return this.greyscale(grayscale);
65
+ }
66
+
67
+ /**
68
+ * Set the pipeline colourspace.
69
+ *
70
+ * The input image will be converted to the provided colourspace at the start of the pipeline.
71
+ * All operations will use this colourspace before converting to the output colourspace,
72
+ * as defined by {@link #tocolourspace toColourspace}.
73
+ *
74
+ * @since 0.29.0
75
+ *
76
+ * @example
77
+ * // Run pipeline in 16 bits per channel RGB while converting final result to 8 bits per channel sRGB.
78
+ * await sharp(input)
79
+ * .pipelineColourspace('rgb16')
80
+ * .toColourspace('srgb')
81
+ * .toFile('16bpc-pipeline-to-8bpc-output.png')
82
+ *
83
+ * @param {string} [colourspace] - pipeline colourspace e.g. `rgb16`, `scrgb`, `lab`, `grey16` [...](https://www.libvips.org/API/current/enum.Interpretation.html)
84
+ * @returns {Sharp}
85
+ * @throws {Error} Invalid parameters
86
+ */
87
+ function pipelineColourspace (colourspace) {
88
+ if (!is.string(colourspace)) {
89
+ throw is.invalidParameterError('colourspace', 'string', colourspace);
90
+ }
91
+ this.options.colourspacePipeline = colourspace;
92
+ return this;
93
+ }
94
+
95
+ /**
96
+ * Alternative spelling of `pipelineColourspace`.
97
+ * @param {string} [colorspace] - pipeline colorspace.
98
+ * @returns {Sharp}
99
+ * @throws {Error} Invalid parameters
100
+ */
101
+ function pipelineColorspace (colorspace) {
102
+ return this.pipelineColourspace(colorspace);
103
+ }
104
+
105
+ /**
106
+ * Set the output colourspace.
107
+ * By default output image will be web-friendly sRGB, with additional channels interpreted as alpha channels.
108
+ *
109
+ * @example
110
+ * // Output 16 bits per pixel RGB
111
+ * await sharp(input)
112
+ * .toColourspace('rgb16')
113
+ * .toFile('16-bpp.png')
114
+ *
115
+ * @param {string} [colourspace] - output colourspace e.g. `srgb`, `rgb`, `cmyk`, `lab`, `b-w` [...](https://www.libvips.org/API/current/enum.Interpretation.html)
116
+ * @returns {Sharp}
117
+ * @throws {Error} Invalid parameters
118
+ */
119
+ function toColourspace (colourspace) {
120
+ if (!is.string(colourspace)) {
121
+ throw is.invalidParameterError('colourspace', 'string', colourspace);
122
+ }
123
+ this.options.colourspace = colourspace;
124
+ return this;
125
+ }
126
+
127
+ /**
128
+ * Alternative spelling of `toColourspace`.
129
+ * @param {string} [colorspace] - output colorspace.
130
+ * @returns {Sharp}
131
+ * @throws {Error} Invalid parameters
132
+ */
133
+ function toColorspace (colorspace) {
134
+ return this.toColourspace(colorspace);
135
+ }
136
+
137
+ /**
138
+ * Create a RGBA colour array from a given value.
139
+ * @private
140
+ * @param {string|Object} value
141
+ * @throws {Error} Invalid value
142
+ */
143
+ function _getBackgroundColourOption (value) {
144
+ if (
145
+ is.object(value) ||
146
+ (is.string(value) && value.length >= 3 && value.length <= 200)
147
+ ) {
148
+ const colour = color(value);
149
+ return [
150
+ colour.red(),
151
+ colour.green(),
152
+ colour.blue(),
153
+ Math.round(colour.alpha() * 255)
154
+ ];
155
+ } else {
156
+ throw is.invalidParameterError('background', 'object or string', value);
157
+ }
158
+ }
159
+
160
+ /**
161
+ * Update a colour attribute of the this.options Object.
162
+ * @private
163
+ * @param {string} key
164
+ * @param {string|Object} value
165
+ * @throws {Error} Invalid value
166
+ */
167
+ function _setBackgroundColourOption (key, value) {
168
+ if (is.defined(value)) {
169
+ this.options[key] = _getBackgroundColourOption(value);
170
+ }
171
+ }
172
+
173
+ /**
174
+ * Decorate the Sharp prototype with colour-related functions.
175
+ * @module Sharp
176
+ * @private
177
+ */
178
+ module.exports = (Sharp) => {
179
+ Object.assign(Sharp.prototype, {
180
+ // Public
181
+ tint,
182
+ greyscale,
183
+ grayscale,
184
+ pipelineColourspace,
185
+ pipelineColorspace,
186
+ toColourspace,
187
+ toColorspace,
188
+ // Private
189
+ _getBackgroundColourOption,
190
+ _setBackgroundColourOption
191
+ });
192
+ // Class attributes
193
+ Sharp.colourspace = colourspace;
194
+ Sharp.colorspace = colourspace;
195
+ };