@revizly/sharp 0.35.0-revizly27 → 0.35.0-revizly29
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.
- package/README.md +4 -0
- package/{lib/channel.js → dist/channel.cjs} +1 -1
- package/dist/channel.mjs +177 -0
- package/{lib/colour.js → dist/colour.cjs} +1 -1
- package/dist/colour.mjs +195 -0
- package/{lib/composite.js → dist/composite.cjs} +2 -1
- package/dist/composite.mjs +213 -0
- package/{lib/constructor.js → dist/constructor.cjs} +21 -26
- package/dist/constructor.mjs +500 -0
- package/dist/index.cjs +25 -0
- package/dist/index.mjs +25 -0
- package/{lib/input.js → dist/input.cjs} +14 -3
- package/dist/input.mjs +814 -0
- package/dist/is.mjs +143 -0
- package/{lib/libvips.js → dist/libvips.cjs} +8 -11
- package/dist/libvips.mjs +212 -0
- package/{lib/operation.js → dist/operation.cjs} +2 -2
- package/dist/operation.mjs +987 -0
- package/{lib/output.js → dist/output.cjs} +3 -3
- package/dist/output.mjs +1799 -0
- package/{lib/resize.js → dist/resize.cjs} +1 -1
- package/dist/resize.mjs +611 -0
- package/dist/sharp.cjs +162 -0
- package/dist/sharp.mjs +164 -0
- package/{lib/utility.js → dist/utility.cjs} +8 -6
- package/dist/utility.mjs +295 -0
- package/install/build.js +1 -1
- package/lib/index.d.ts +8 -1
- package/package.json +25 -15
- package/src/binding.gyp +8 -8
- package/src/common.cc +6 -3
- package/src/common.h +2 -0
- package/lib/index.js +0 -16
- package/lib/sharp.js +0 -163
- /package/{lib/is.js → dist/is.cjs} +0 -0
package/dist/is.mjs
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
Copyright 2013 Lovell Fuller and others.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Is this value defined and not null?
|
|
8
|
+
* @private
|
|
9
|
+
*/
|
|
10
|
+
const defined = (val) => typeof val !== 'undefined' && val !== null;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Is this value an object?
|
|
14
|
+
* @private
|
|
15
|
+
*/
|
|
16
|
+
const object = (val) => typeof val === 'object';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Is this value a plain object?
|
|
20
|
+
* @private
|
|
21
|
+
*/
|
|
22
|
+
const plainObject = (val) => Object.prototype.toString.call(val) === '[object Object]';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Is this value a function?
|
|
26
|
+
* @private
|
|
27
|
+
*/
|
|
28
|
+
const fn = (val) => typeof val === 'function';
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Is this value a boolean?
|
|
32
|
+
* @private
|
|
33
|
+
*/
|
|
34
|
+
const bool = (val) => typeof val === 'boolean';
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Is this value a Buffer object?
|
|
38
|
+
* @private
|
|
39
|
+
*/
|
|
40
|
+
const buffer = (val) => val instanceof Buffer;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Is this value a typed array object?. E.g. Uint8Array or Uint8ClampedArray?
|
|
44
|
+
* @private
|
|
45
|
+
*/
|
|
46
|
+
const typedArray = (val) => {
|
|
47
|
+
if (defined(val)) {
|
|
48
|
+
switch (val.constructor) {
|
|
49
|
+
case Uint8Array:
|
|
50
|
+
case Uint8ClampedArray:
|
|
51
|
+
case Int8Array:
|
|
52
|
+
case Uint16Array:
|
|
53
|
+
case Int16Array:
|
|
54
|
+
case Uint32Array:
|
|
55
|
+
case Int32Array:
|
|
56
|
+
case Float32Array:
|
|
57
|
+
case Float64Array:
|
|
58
|
+
return true;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
return false;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Is this value an ArrayBuffer object?
|
|
67
|
+
* @private
|
|
68
|
+
*/
|
|
69
|
+
const arrayBuffer = (val) => val instanceof ArrayBuffer;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Is this value a non-empty string?
|
|
73
|
+
* @private
|
|
74
|
+
*/
|
|
75
|
+
const string = (val) => typeof val === 'string' && val.length > 0;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Is this value a real number?
|
|
79
|
+
* @private
|
|
80
|
+
*/
|
|
81
|
+
const number = (val) => typeof val === 'number' && !Number.isNaN(val);
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Is this value an integer?
|
|
85
|
+
* @private
|
|
86
|
+
*/
|
|
87
|
+
const integer = (val) => Number.isInteger(val);
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Is this value within an inclusive given range?
|
|
91
|
+
* @private
|
|
92
|
+
*/
|
|
93
|
+
const inRange = (val, min, max) => val >= min && val <= max;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Is this value within the elements of an array?
|
|
97
|
+
* @private
|
|
98
|
+
*/
|
|
99
|
+
const inArray = (val, list) => list.includes(val);
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Create an Error with a message relating to an invalid parameter.
|
|
103
|
+
*
|
|
104
|
+
* @param {string} name - parameter name.
|
|
105
|
+
* @param {string} expected - description of the type/value/range expected.
|
|
106
|
+
* @param {*} actual - the value received.
|
|
107
|
+
* @returns {Error} Containing the formatted message.
|
|
108
|
+
* @private
|
|
109
|
+
*/
|
|
110
|
+
const invalidParameterError = (name, expected, actual) => new Error(
|
|
111
|
+
`Expected ${expected} for ${name} but received ${actual} of type ${typeof actual}`
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Ensures an Error from C++ contains a JS stack.
|
|
116
|
+
*
|
|
117
|
+
* @param {Error} native - Error with message from C++.
|
|
118
|
+
* @param {Error} context - Error with stack from JS.
|
|
119
|
+
* @returns {Error} Error with message and stack.
|
|
120
|
+
* @private
|
|
121
|
+
*/
|
|
122
|
+
const nativeError = (native, context) => {
|
|
123
|
+
context.message = native.message;
|
|
124
|
+
return context;
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
export default {
|
|
128
|
+
defined,
|
|
129
|
+
object,
|
|
130
|
+
plainObject,
|
|
131
|
+
fn,
|
|
132
|
+
bool,
|
|
133
|
+
buffer,
|
|
134
|
+
typedArray,
|
|
135
|
+
arrayBuffer,
|
|
136
|
+
string,
|
|
137
|
+
number,
|
|
138
|
+
integer,
|
|
139
|
+
inRange,
|
|
140
|
+
inArray,
|
|
141
|
+
invalidParameterError,
|
|
142
|
+
nativeError
|
|
143
|
+
};
|
|
@@ -5,16 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
const { spawnSync } = require('node:child_process');
|
|
7
7
|
const { createHash } = require('node:crypto');
|
|
8
|
-
const
|
|
9
|
-
const semverGreaterThanOrEqualTo = require('semver/functions/gte');
|
|
10
|
-
const semverSatisfies = require('semver/functions/satisfies');
|
|
8
|
+
const semver = require('semver');
|
|
11
9
|
const detectLibc = require('detect-libc');
|
|
12
|
-
|
|
13
|
-
const { config, engines, optionalDependencies } = require('../package.json');
|
|
10
|
+
const pkg = require('../package.json');
|
|
14
11
|
|
|
15
12
|
/* node:coverage ignore next */
|
|
16
|
-
const minimumLibvipsVersionLabelled = process.env.npm_package_config_libvips || config.libvips;
|
|
17
|
-
const minimumLibvipsVersion =
|
|
13
|
+
const minimumLibvipsVersionLabelled = process.env.npm_package_config_libvips || pkg.config.libvips;
|
|
14
|
+
const minimumLibvipsVersion = semver.coerce(minimumLibvipsVersionLabelled).version;
|
|
18
15
|
|
|
19
16
|
const prebuiltPlatforms = [
|
|
20
17
|
'darwin-arm64', 'darwin-x64',
|
|
@@ -83,8 +80,8 @@ const buildSharpLibvipsLibDir = () => {
|
|
|
83
80
|
|
|
84
81
|
const isUnsupportedNodeRuntime = () => {
|
|
85
82
|
if (process.release?.name === 'node' && process.versions) {
|
|
86
|
-
if (!
|
|
87
|
-
return { found: process.versions.node, expected: engines.node };
|
|
83
|
+
if (!semver.satisfies(process.versions.node, pkg.engines.node)) {
|
|
84
|
+
return { found: process.versions.node, expected: pkg.engines.node };
|
|
88
85
|
}
|
|
89
86
|
}
|
|
90
87
|
};
|
|
@@ -109,7 +106,7 @@ const sha512 = (s) => createHash('sha512').update(s).digest('hex');
|
|
|
109
106
|
const yarnLocator = () => {
|
|
110
107
|
try {
|
|
111
108
|
const identHash = sha512(`imgsharp-libvips-${buildPlatformArch()}`);
|
|
112
|
-
const npmVersion =
|
|
109
|
+
const npmVersion = semver.coerce(pkg.optionalDependencies[`@revizly/sharp-libvips-${buildPlatformArch()}`], {
|
|
113
110
|
includePrerelease: true
|
|
114
111
|
}).version;
|
|
115
112
|
return sha512(`${identHash}npm:${npmVersion}`).slice(0, 10);
|
|
@@ -194,7 +191,7 @@ const useGlobalLibvips = (logger) => {
|
|
|
194
191
|
}
|
|
195
192
|
const globalVipsVersion = globalLibvipsVersion();
|
|
196
193
|
/* node:coverage ignore next */
|
|
197
|
-
return !!globalVipsVersion &&
|
|
194
|
+
return !!globalVipsVersion && semver.gte(globalVipsVersion, minimumLibvipsVersion);
|
|
198
195
|
};
|
|
199
196
|
|
|
200
197
|
module.exports = {
|
package/dist/libvips.mjs
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
Copyright 2013 Lovell Fuller and others.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { spawnSync } from 'node:child_process';
|
|
7
|
+
import { createHash } from 'node:crypto';
|
|
8
|
+
import semver from 'semver';
|
|
9
|
+
import detectLibc from 'detect-libc';
|
|
10
|
+
import pkg from '../package.json' with { type: 'json' };
|
|
11
|
+
|
|
12
|
+
/* node:coverage ignore next */
|
|
13
|
+
const minimumLibvipsVersionLabelled = process.env.npm_package_config_libvips || pkg.config.libvips;
|
|
14
|
+
const minimumLibvipsVersion = semver.coerce(minimumLibvipsVersionLabelled).version;
|
|
15
|
+
|
|
16
|
+
const prebuiltPlatforms = [
|
|
17
|
+
'darwin-arm64', 'darwin-x64',
|
|
18
|
+
'freebsd-arm64', 'freebsd-x64',
|
|
19
|
+
'linux-arm', 'linux-arm64', 'linux-ppc64', 'linux-riscv64', 'linux-s390x', 'linux-wasm32', 'linux-x64',
|
|
20
|
+
'linuxmusl-arm64', 'linuxmusl-x64',
|
|
21
|
+
'win32-arm64', 'win32-ia32', 'win32-x64'
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const spawnSyncOptions = {
|
|
25
|
+
encoding: 'utf8',
|
|
26
|
+
shell: true
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const log = (item) => {
|
|
30
|
+
if (item instanceof Error) {
|
|
31
|
+
console.error(`sharp: Installation error: ${item.message}`);
|
|
32
|
+
} else {
|
|
33
|
+
console.log(`sharp: ${item}`);
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
/* node:coverage disable */
|
|
38
|
+
|
|
39
|
+
const runtimeLibc = () => detectLibc.isNonGlibcLinuxSync() ? detectLibc.familySync() : '';
|
|
40
|
+
|
|
41
|
+
const runtimePlatformArch = () => `${process.platform}${runtimeLibc()}-${process.arch}`;
|
|
42
|
+
|
|
43
|
+
const buildPlatformArch = () => {
|
|
44
|
+
if (isEmscripten()) {
|
|
45
|
+
return 'wasm32';
|
|
46
|
+
}
|
|
47
|
+
const { npm_config_arch, npm_config_platform, npm_config_libc } = process.env;
|
|
48
|
+
const libc = typeof npm_config_libc === 'string' ? npm_config_libc : runtimeLibc();
|
|
49
|
+
return `${npm_config_platform || process.platform}${libc}-${npm_config_arch || process.arch}`;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
const buildSharpLibvipsIncludeDir = () => {
|
|
53
|
+
try {
|
|
54
|
+
return require(`@revizly/sharp-libvips-dev-${buildPlatformArch()}/include`);
|
|
55
|
+
} catch {
|
|
56
|
+
try {
|
|
57
|
+
return require('@revizly/sharp-libvips-dev/include');
|
|
58
|
+
} catch {}
|
|
59
|
+
}
|
|
60
|
+
return '';
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const buildSharpLibvipsCPlusPlusDir = () => {
|
|
64
|
+
try {
|
|
65
|
+
return require('@revizly/sharp-libvips-dev/cplusplus');
|
|
66
|
+
} catch {}
|
|
67
|
+
return '';
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
const buildSharpLibvipsLibDir = () => {
|
|
71
|
+
try {
|
|
72
|
+
return require(`@revizly/sharp-libvips-dev-${buildPlatformArch()}/lib`);
|
|
73
|
+
} catch {
|
|
74
|
+
try {
|
|
75
|
+
return require(`@revizly/sharp-libvips-${buildPlatformArch()}/lib`);
|
|
76
|
+
} catch {}
|
|
77
|
+
}
|
|
78
|
+
return '';
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
const isUnsupportedNodeRuntime = () => {
|
|
82
|
+
if (process.release?.name === 'node' && process.versions) {
|
|
83
|
+
if (!semver.satisfies(process.versions.node, pkg.engines.node)) {
|
|
84
|
+
return { found: process.versions.node, expected: pkg.engines.node };
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
const isEmscripten = () => {
|
|
90
|
+
const { CC } = process.env;
|
|
91
|
+
return Boolean(CC?.endsWith('/emcc'));
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
const isRosetta = () => {
|
|
95
|
+
if (process.platform === 'darwin' && process.arch === 'x64') {
|
|
96
|
+
const translated = spawnSync('sysctl sysctl.proc_translated', spawnSyncOptions).stdout;
|
|
97
|
+
return (translated || '').trim() === 'sysctl.proc_translated: 1';
|
|
98
|
+
}
|
|
99
|
+
return false;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
/* node:coverage enable */
|
|
103
|
+
|
|
104
|
+
const sha512 = (s) => createHash('sha512').update(s).digest('hex');
|
|
105
|
+
|
|
106
|
+
const yarnLocator = () => {
|
|
107
|
+
try {
|
|
108
|
+
const identHash = sha512(`imgsharp-libvips-${buildPlatformArch()}`);
|
|
109
|
+
const npmVersion = semver.coerce(pkg.optionalDependencies[`@revizly/sharp-libvips-${buildPlatformArch()}`], {
|
|
110
|
+
includePrerelease: true
|
|
111
|
+
}).version;
|
|
112
|
+
return sha512(`${identHash}npm:${npmVersion}`).slice(0, 10);
|
|
113
|
+
} catch {}
|
|
114
|
+
return '';
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
/* node:coverage disable */
|
|
118
|
+
|
|
119
|
+
const spawnRebuild = () =>
|
|
120
|
+
spawnSync(`node-gyp rebuild --directory=src ${isEmscripten() ? '--nodedir=emscripten' : ''}`, {
|
|
121
|
+
...spawnSyncOptions,
|
|
122
|
+
stdio: 'inherit'
|
|
123
|
+
}).status;
|
|
124
|
+
|
|
125
|
+
const globalLibvipsVersion = () => {
|
|
126
|
+
if (process.platform !== 'win32') {
|
|
127
|
+
const globalLibvipsVersion = spawnSync('pkg-config --modversion vips-cpp', {
|
|
128
|
+
...spawnSyncOptions,
|
|
129
|
+
env: {
|
|
130
|
+
...process.env,
|
|
131
|
+
PKG_CONFIG_PATH: pkgConfigPath()
|
|
132
|
+
}
|
|
133
|
+
}).stdout;
|
|
134
|
+
return (globalLibvipsVersion || '').trim();
|
|
135
|
+
} else {
|
|
136
|
+
return '';
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
const getBrewPkgConfigPath = () => {
|
|
141
|
+
try {
|
|
142
|
+
const brewPrefix = (spawnSync('brew', ['--prefix'], { encoding: 'utf8' }).stdout || '').trim();
|
|
143
|
+
if (brewPrefix) {
|
|
144
|
+
return `${brewPrefix}/lib/pkgconfig`;
|
|
145
|
+
}
|
|
146
|
+
} catch (_err) {}
|
|
147
|
+
return undefined;
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
const getPkgConfigPath = () => {
|
|
151
|
+
try {
|
|
152
|
+
const pkgConfigPath = (spawnSync('pkg-config', ['--variable', 'pc_path', 'pkg-config'], { encoding: 'utf8' }).stdout || '').trim();
|
|
153
|
+
if (pkgConfigPath) {
|
|
154
|
+
return pkgConfigPath;
|
|
155
|
+
}
|
|
156
|
+
} catch (_err) {}
|
|
157
|
+
return undefined;
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
/* node:coverage enable */
|
|
161
|
+
|
|
162
|
+
const pkgConfigPath = () => {
|
|
163
|
+
if (process.platform !== 'win32') {
|
|
164
|
+
return [
|
|
165
|
+
getBrewPkgConfigPath(),
|
|
166
|
+
getPkgConfigPath(),
|
|
167
|
+
process.env.PKG_CONFIG_PATH
|
|
168
|
+
].filter(Boolean).join(':');
|
|
169
|
+
} else {
|
|
170
|
+
return '';
|
|
171
|
+
}
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
const skipSearch = (status, reason, logger) => {
|
|
175
|
+
if (logger) {
|
|
176
|
+
logger(`Detected ${reason}, skipping search for globally-installed libvips`);
|
|
177
|
+
}
|
|
178
|
+
return status;
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
const useGlobalLibvips = (logger) => {
|
|
182
|
+
if (Boolean(process.env.SHARP_IGNORE_GLOBAL_LIBVIPS) === true) {
|
|
183
|
+
return skipSearch(false, 'SHARP_IGNORE_GLOBAL_LIBVIPS', logger);
|
|
184
|
+
}
|
|
185
|
+
if (Boolean(process.env.SHARP_FORCE_GLOBAL_LIBVIPS) === true) {
|
|
186
|
+
return skipSearch(true, 'SHARP_FORCE_GLOBAL_LIBVIPS', logger);
|
|
187
|
+
}
|
|
188
|
+
/* node:coverage ignore next 3 */
|
|
189
|
+
if (isRosetta()) {
|
|
190
|
+
return skipSearch(false, 'Rosetta', logger);
|
|
191
|
+
}
|
|
192
|
+
const globalVipsVersion = globalLibvipsVersion();
|
|
193
|
+
/* node:coverage ignore next */
|
|
194
|
+
return !!globalVipsVersion && semver.gte(globalVipsVersion, minimumLibvipsVersion);
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
export default {
|
|
198
|
+
minimumLibvipsVersion,
|
|
199
|
+
prebuiltPlatforms,
|
|
200
|
+
buildPlatformArch,
|
|
201
|
+
buildSharpLibvipsIncludeDir,
|
|
202
|
+
buildSharpLibvipsCPlusPlusDir,
|
|
203
|
+
buildSharpLibvipsLibDir,
|
|
204
|
+
isUnsupportedNodeRuntime,
|
|
205
|
+
runtimePlatformArch,
|
|
206
|
+
log,
|
|
207
|
+
yarnLocator,
|
|
208
|
+
spawnRebuild,
|
|
209
|
+
globalLibvipsVersion,
|
|
210
|
+
pkgConfigPath,
|
|
211
|
+
useGlobalLibvips
|
|
212
|
+
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
const is = require('./is');
|
|
6
|
+
const is = require('./is.cjs');
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* How accurate an operation should be.
|
|
@@ -178,7 +178,7 @@ function flop (flop) {
|
|
|
178
178
|
* @throws {Error} Invalid parameters
|
|
179
179
|
*/
|
|
180
180
|
function affine (matrix, options) {
|
|
181
|
-
const flatMatrix = [].concat(...matrix);
|
|
181
|
+
const flatMatrix = Array.isArray(matrix) ? [].concat(...matrix) : [];
|
|
182
182
|
if (flatMatrix.length === 4 && flatMatrix.every(is.number)) {
|
|
183
183
|
this.options.affineMatrix = flatMatrix;
|
|
184
184
|
} else {
|