@jsquash/resize
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

@jsquash/resize

npm version

An easy experience for resizing images in the browser or V8 environment. Powered by WebAssembly ⚡️ and Rust.

ℹ️ You will need to have an already decoded ImageData object to resize. This can be accomplished by using other jSquash modules or using the Canvas API, if available.

Uses squoosh's Resize module. Composed of:

A jSquash package. Codecs and supporting code derived from the Squoosh app.

Installation

npm install --save @jsquash/resize
# Or your favourite package manager alternative

Usage

Note: You will need to either manually include the wasm files from the codec directory or use a bundler like WebPack or Rollup to include them in your app/server.

resize(data: ImageData, options: ResizeOptions): Promise

Resizes an ImageData object to the

data

Type: ImageData

options

Type: Partial<ResizeOptions> & { width: number, height: number }

The resize options for the output image. See default values.

  • width (number) the width to resize the image to
  • height (number) the height to resize the image to
  • method? ('triangle' | 'catrom' | 'mitchell' | 'lanczos3' | 'hqx') the algorithm used to resize the image. Defaults to lanczos3.
  • fitMethod? ('stretch' | 'contain') whether the image is stretched to fit the dimensions or cropped. Defaults to stretch.
  • premultiply? (boolean) Defaults to true
  • linearRGB? (boolean) Defaults to true

Example

import { decode } from '@jsquash/jpeg';
import resize from '@jsquash/resize';

const imageBuffer = fetch('/images/example.jpg').then(res => res.arrayBuffer());
const originalImageData = await decode(imageBuffer);
const resizedImageData = await resize(originalImageData, { height: 300, width: 400 };

Manual WASM initialisation (not recommended)

In most situations there is no need to manually initialise the provided WebAssembly modules. The generated glue code takes care of this and supports most web bundlers.

One situation where this arises is when using the modules in Cloudflare Workers (See the README for more info).

The main module exports initHqx and initResize functions that can be used to manually load their respective wasm module.

import resize, { initResize } from '@jsquash/resize';

initResize(WASM_MODULE); // The `WASM_MODULE` variable will need to be sourced by yourself and passed as an ArrayBuffer.

resize(image, options);

Package Sidebar

Install

npm i @jsquash/resize

Weekly Downloads

44

Version

2.0.0

License

Apache-2.0

Unpacked Size

222 kB

Total Files

27

Last publish

Collaborators

  • jamsinclair