npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

pictures-operator

v2.0.0

Published

Browser image conversion, resizing, and compression with Web Workers and WASM codecs

Readme

PicturesOperator

Overview

PicturesOperator decodes, resizes, compresses, and encodes images directly in the browser using module Web Workers, OffscreenCanvas, and WASM codecs.

It is useful for upload forms, image editors, and other browser tools that need to resize, compress, or convert images before uploading them. Processing happens entirely on the client in Web Workers, reducing unnecessary backend load and keeping heavy work off the main thread.

PicturesOperator demo

The package is ESM-only and requires a browser with Web Worker and OffscreenCanvas support.

Installation

npm install pictures-operator

Usage

import { PictureFormat, PicturesOperator } from "pictures-operator";

const pictureOperator = new PicturesOperator();

const result = await pictureOperator.process(file, {
  format: PictureFormat.webp,
  quality: 90,
  resize: [720, 480],
});

// result is a Blob

Input formats: JPEG, PNG, BMP, GIF, HEIF, HEIC, AVIF, and WebP.

Output formats: JPEG, PNG, AVIF, and WebP.

quality accepts values from 0 to 100. Requested dimensions are limited to 4096 pixels per side.

Call await pictureOperator.terminate() to stop an active operation and release its workers.

Files must use one of the documented MIME types. Unknown or empty MIME types are rejected even when they begin with image/.

Browser requirements

PicturesOperator requires all of the following browser features:

  • ECMAScript modules and module workers
  • Web Workers
  • OffscreenCanvas with convertToBlob()
  • createImageBitmap()
  • WebAssembly
  • Blob, File, and object URLs

Browser versions are not inferred from user-agent strings. Applications should use feature detection and provide their own fallback UI where these APIs are unavailable.

Classic <script> usage is not supported because version 2 is ESM-only and does not expose a global variable. Use an ESM import through a package manager/bundler or a correctly configured module import map.

Content Security Policy

Workers and codec assets are loaded relative to the package entry. A restrictive application CSP may need directives equivalent to:

script-src 'self' 'wasm-unsafe-eval';
worker-src 'self';
connect-src 'self';
img-src 'self' data: blob:;

Adjust origins when package assets are hosted on a CDN. Avoid adding blob: to worker-src unless the application or bundler actually creates blob workers.

Migrating from version 1

Version 2 is a breaking, ESM-only release:

  • CommonJS require() and the UMD entry were removed.
  • The package entry is now dist/index.js through the package exports map.
  • Worker and WASM files remain internal package assets and should not be imported directly.
  • The published package is self-contained and has no runtime npm dependencies.

Application imports using standard ESM syntax remain unchanged.

Licensing

Pictures Operator's original code is available under the MIT License. The self-contained browser distribution also includes third-party codec components under Apache-2.0, BSD, and LGPL-3.0 licenses.

See LICENSE and THIRD_PARTY_NOTICES.md for the applicable terms, exact versions, notices, and corresponding-source locations. The LGPL-licensed HEIF implementation is shipped as a separate, replaceable libheif-bundle.mjs runtime asset.