All Projects → kleisauke → Wasm Vips

kleisauke / Wasm Vips

Licence: mit
libvips for the browser and Node.js, compiled to WebAssembly with Emscripten.

wasm-vips

libvips for the browser and Node.js, compiled to WebAssembly with Emscripten.

Programs that use wasm-vips don't manipulate images directly, instead they create pipelines of image processing operations building on a source image. When the end of the pipe is connected to a destination, the whole pipeline executes at once, streaming the image in parallel from source to destination a section at a time. Because wasm-vips is parallel, it's quick, and because it doesn't need to keep entire images in memory, it's light.

Note: This library is still under early development. See: #1.

Browser support

A browser that supports the SharedArrayBuffer API.

Chrome
Chrome
Firefox
Firefox
Edge
Edge
version 74+ version 79+ version 79+

Installation

npm install wasm-vips

Usage

Browser

Requires vips.js, vips.wasm and vips.worker.js to be served from the same directory.

<script src="vips.js"></script>
<script>
(async () => {
    const vips = await Vips();
})();
</script>

Node.js

Since wasm-vips uses the latest experimental features of WebAssembly, you need to add these extra flags to run in Node.js.

node --experimental-wasm-threads --experimental-wasm-simd --wasm-simd-post-mvp --experimental-wasm-bulk-memory demo.js

Example

// Load an image from a file
let im = vips.Image.newFromFile('owl.jpg');

// Put im at position (100, 100) in a 3000 x 3000 pixel image,
// make the other pixels in the image by mirroring im up / down /
// left / right, see
// https://libvips.github.io/libvips/API/current/libvips-conversion.html#vips-embed
im = im.embed(100, 100, 3000, 3000, {
    extend: 'mirror'
});

// Multiply the green (middle) band by 2, leave the other two alone
im = im.multiply([1, 2, 1]);

// Make an image from an array constant, convolve with it
const mask = vips.Image.newFromArray([
    [-1, -1, -1],
    [-1, 16, -1],
    [-1, -1, -1]
], 8.0);

im = im.conv(mask, {
    precision: 'integer'
});

// Finally, write the result to a buffer
const outBuffer = im.writeToBuffer('.jpg');
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].