-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.js
75 lines (59 loc) · 1.27 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
import {Buffer} from 'node:buffer';
import {execa} from 'execa';
import isJpg from 'is-jpg';
import jpegoptim from 'jpegoptim-bin';
const imageminJpegoptim = options => async buffer => {
options = {
stripAll: true,
stripCom: true,
stripExif: true,
stripIptc: true,
stripIcc: true,
stripXmp: true,
...options,
};
if (!Buffer.isBuffer(buffer)) {
return Promise.reject(new TypeError(`Expected a Buffer, got ${typeof buffer}`));
}
if (!isJpg(buffer)) {
return Promise.resolve(buffer);
}
const args = [
'--stdin',
'--stdout',
];
if (options.stripAll) {
args.push('--strip-all');
}
if (options.stripCom) {
args.push('--strip-com');
}
if (options.stripExif) {
args.push('--strip-exif');
}
if (options.stripIptc) {
args.push('--strip-iptc');
}
if (options.stripIcc) {
args.push('--strip-icc');
}
if (options.stripXmp) {
args.push('--strip-xmp');
}
if (options.progressive) {
args.push('--all-progressive');
}
if (options.max !== undefined) {
args.push(`--max=${options.max}`);
}
if (options.size > 0) {
args.push(`--size=${options.size}`);
}
const {stdout} = await execa(jpegoptim, args, {
encoding: null,
input: buffer,
maxBuffer: Number.POSITIVE_INFINITY,
});
return stdout;
};
export default imageminJpegoptim;