-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
370 lines (310 loc) · 9.32 KB
/
index.ts
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
/**
* External dependencies
*/
import type Vips from 'wasm-vips';
// @ts-expect-error
// eslint-disable-next-line import/no-unresolved
import VipsModule from 'wasm-vips/vips.wasm';
// @ts-expect-error
// eslint-disable-next-line import/no-unresolved
import VipsHeifModule from 'wasm-vips/vips-heif.wasm';
// @ts-expect-error
// eslint-disable-next-line import/no-unresolved
import VipsJxlModule from 'wasm-vips/vips-jxl.wasm';
/**
* Internal dependencies
*/
import type {
ItemId,
ImageSizeCrop,
LoadOptions,
SaveOptions,
ThumbnailOptions,
} from './types';
import { supportsAnimation, supportsInterlace, supportsQuality } from './utils';
interface EmscriptenModule {
setAutoDeleteLater: ( autoDelete: boolean ) => void;
setDelayFunction: ( fn: ( fn: () => void ) => void ) => void;
}
let location = '';
/**
* Dynamically sets the location / public path to use for loading the WASM files.
*
* This is required when loading this module in an inline worker,
* where globals such as __webpack_public_path__ are not available.
*
* @param newLocation Location, typically a base URL such as "https://example.com/path/to/js/...".
*/
export function setLocation( newLocation: string ) {
location = newLocation;
}
let cleanup: () => void;
let vipsInstance: typeof Vips;
/**
* Instantiates and returns a new vips instance.
*
* Reuses any existing instance.
*/
async function getVips(): Promise< typeof Vips > {
if ( vipsInstance ) {
return vipsInstance;
}
const { default: Vips } = await import(
/* webpackChunkName: "chunk-wasm-vips" */ 'wasm-vips'
);
vipsInstance = await Vips( {
locateFile: ( fileName: string ) => {
if ( fileName.endsWith( 'vips.wasm' ) ) {
fileName = VipsModule;
} else if ( fileName.endsWith( 'vips-heif.wasm' ) ) {
fileName = VipsHeifModule;
} else if ( fileName.endsWith( 'vips-jxl.wasm' ) ) {
fileName = VipsJxlModule;
}
return location + fileName;
},
preRun: ( module: EmscriptenModule ) => {
// https://github.com/kleisauke/wasm-vips/issues/13#issuecomment-1073246828
module.setAutoDeleteLater( true );
module.setDelayFunction( ( fn: () => void ) => {
cleanup = fn;
} );
},
} );
return vipsInstance;
}
/**
* Holds a list of ongoing operations for a given ID.
*
* This way, operations can be cancelled mid-progress.
*/
const inProgressOperations = new Set< ItemId >();
/**
* Cancels all ongoing image operations for a given item ID.
*
* The onProgress callbacks check for an IDs existence in this list,
* killing the process if it's absent.
*
* @param id Item ID.
* @return boolean Whether any operation was cancelled.
*/
export async function cancelOperations( id: ItemId ) {
return inProgressOperations.delete( id );
}
/**
* Converts an image to a different format using vips.
*
* @param id Item ID.
* @param buffer Original file buffer.
* @param inputType Input mime type.
* @param outputType Output mime type.
* @param quality Desired quality.
* @param interlaced Whether to use interlaced/progressive mode.
* Only used if the outputType supports it.
*/
export async function convertImageFormat(
id: ItemId,
buffer: ArrayBuffer,
inputType: string,
outputType: string,
quality = 0.82,
interlaced = false
): Promise< ArrayBuffer > {
const ext = outputType.split( '/' )[ 1 ];
inProgressOperations.add( id );
let strOptions = '';
const loadOptions: LoadOptions< typeof inputType > = {};
// To ensure all frames are loaded in case the image is animated.
if ( supportsAnimation( inputType ) ) {
strOptions = '[n=-1]';
( loadOptions as LoadOptions< typeof inputType > ).n = -1;
}
const vips = await getVips();
const image = vips.Image.newFromBuffer( buffer, strOptions, loadOptions );
// TODO: Report progress, see https://github.com/swissspidy/media-experiments/issues/327.
image.onProgress = () => {
if ( ! inProgressOperations.has( id ) ) {
image.kill = true;
}
};
const saveOptions: SaveOptions< typeof outputType > = {};
if ( supportsQuality( outputType ) ) {
saveOptions.Q = quality * 100;
}
if ( interlaced && supportsInterlace( outputType ) ) {
saveOptions.interlace = interlaced;
}
// See https://github.com/swissspidy/media-experiments/issues/324.
if ( 'image/avif' === outputType ) {
saveOptions.effort = 2;
}
const outBuffer = image.writeToBuffer( `.${ ext }`, saveOptions );
const result = outBuffer.buffer;
cleanup?.();
return result;
}
/**
* Compresses an existing image using vips.
*
* @param id Item ID.
* @param buffer Original file buffer.
* @param type Mime type.
* @param quality Desired quality.
* @param interlaced Whether to use interlaced/progressive mode.
* Only used if the outputType supports it.
* @return Compressed file data.
*/
export async function compressImage(
id: ItemId,
buffer: ArrayBuffer,
type: string,
quality = 0.82,
interlaced = false
): Promise< ArrayBuffer > {
return convertImageFormat( id, buffer, type, type, quality, interlaced );
}
/**
* Resizes an image using vips.
*
* @param id Item ID.
* @param buffer Original file buffer.
* @param type Mime type.
* @param resize Resize options.
* @param smartCrop Whether to use smart cropping (i.e. saliency-aware).
* @return Processed file data plus the old and new dimensions.
*/
export async function resizeImage(
id: ItemId,
buffer: ArrayBuffer,
type: string,
resize: ImageSizeCrop,
smartCrop = false
): Promise< {
buffer: ArrayBuffer;
width: number;
height: number;
originalWidth: number;
originalHeight: number;
} > {
const ext = type.split( '/' )[ 1 ];
inProgressOperations.add( id );
const vips = await getVips();
const thumbnailOptions: ThumbnailOptions = {
size: 'down',
};
let strOptions = '';
const loadOptions: LoadOptions< typeof type > = {};
// To ensure all frames are loaded in case the image is animated.
// But only if we're not cropping.
if ( supportsAnimation( type ) && ! resize.crop ) {
strOptions = '[n=-1]';
thumbnailOptions.option_string = strOptions;
( loadOptions as LoadOptions< typeof type > ).n = -1;
}
// TODO: Report progress, see https://github.com/swissspidy/media-experiments/issues/327.
const onProgress = () => {
if ( ! inProgressOperations.has( id ) ) {
image.kill = true;
}
};
let image = vips.Image.newFromBuffer( buffer, strOptions, loadOptions );
image.onProgress = onProgress;
const { width, pageHeight } = image;
// If resize.height is zero.
resize.height = resize.height || ( pageHeight / width ) * resize.width;
let resizeWidth = resize.width;
thumbnailOptions.height = resize.height;
if ( ! resize.crop ) {
image = vips.Image.thumbnailBuffer(
buffer,
resizeWidth,
thumbnailOptions
);
image.onProgress = onProgress;
} else if ( true === resize.crop ) {
thumbnailOptions.crop = smartCrop ? 'attention' : 'centre';
image = vips.Image.thumbnailBuffer(
buffer,
resizeWidth,
thumbnailOptions
);
image.onProgress = onProgress;
} else {
// First resize, then do the cropping.
// This allows operating on the second bitmap with the correct dimensions.
if ( width < pageHeight ) {
resizeWidth =
resize.width >= resize.height
? resize.width
: ( width / pageHeight ) * resize.height;
thumbnailOptions.height =
resize.width >= resize.height
? ( pageHeight / width ) * resizeWidth
: resize.height;
} else {
resizeWidth =
resize.width >= resize.height
? ( width / pageHeight ) * resize.height
: resize.width;
thumbnailOptions.height =
resize.width >= resize.height
? resize.height
: ( pageHeight / width ) * resizeWidth;
}
image = vips.Image.thumbnailBuffer(
buffer,
resizeWidth,
thumbnailOptions
);
image.onProgress = onProgress;
let left = 0;
if ( 'center' === resize.crop[ 0 ] ) {
left = ( image.width - resize.width ) / 2;
} else if ( 'right' === resize.crop[ 0 ] ) {
left = image.width - resize.width;
}
let top = 0;
if ( 'center' === resize.crop[ 1 ] ) {
top = ( image.height - resize.height ) / 2;
} else if ( 'bottom' === resize.crop[ 1 ] ) {
top = image.height - resize.height;
}
// Address rounding errors where `left` or `top` become negative integers
// and `resize.width` / `resize.height` are bigger than the actual dimensions.
// Downside: one side could be 1px smaller than the requested size.
left = Math.max( 0, left );
top = Math.max( 0, top );
resize.width = Math.min( image.width, resize.width );
resize.height = Math.min( image.height, resize.height );
image = image.crop( left, top, resize.width, resize.height );
image.onProgress = onProgress;
}
// TODO: Allow passing quality?
const saveOptions: SaveOptions< typeof type > = {};
const outBuffer = image.writeToBuffer( `.${ ext }`, saveOptions );
const result = {
buffer: outBuffer.buffer,
width: image.width,
height: image.pageHeight,
originalWidth: width,
originalHeight: pageHeight,
};
// Only call after `image` is no longer being used.
cleanup?.();
return result;
}
/**
* Determines whether an image has an alpha channel.
*
* @param buffer Original file object.
* @return Whether the image has an alpha channel.
*/
export async function hasTransparency(
buffer: ArrayBuffer
): Promise< boolean > {
const vips = await getVips();
const image = vips.Image.newFromBuffer( buffer );
const hasAlpha = image.hasAlpha();
cleanup?.();
return hasAlpha;
}