Pixer

Fast, cross-platform image manipulation for Dart, powered by Rust via FFI.

Installation

dependencies:
  pixer: ^0.0.10

Native binaries are downloaded automatically via Dart build hooks.

Native and WebAssembly binaries must match the package's ABI version. Pixer checks this before loading images (or during initialize) and throws a StateError for missing or incompatible ABI versions. Rebuild or download the matching binary when upgrading; replace any cached pixer.wasm as well.

WebAssembly

Download pixer.wasm from the matching GitHub release into your app's web root, then initialize Pixer before loading images:

await Pixer.initialize(); // Fetches pixer.wasm relative to the page.
final image = Pixer.fromMemory(bytes);

You can instead pass wasmUri or wasmBytes to initialize. For local development of this repository, build the module with:

dart packages/pixer/tool/build_wasm.dart web/pixer.wasm

Browser builds support the byte-based API. fromFile, saveToFile, and the batch saveToFile terminal throw UnsupportedError; use fromMemory and encode instead. The web implementation is compatible with both dart2js and Dart/Flutter Wasm builds.

Quick Start

import 'package:pixer/pixer.dart';

final image = Pixer.fromFile('input.jpg');
final result = image.resize(800, 600);
result.saveToFile('output.png');
result.dispose();
image.dispose();

Loading Images

// From file (format auto-detected)
final image = Pixer.fromFile('photo.jpg');

// From memory
final bytes = await File('photo.png').readAsBytes();
final image = Pixer.fromMemory(bytes);

// From memory with explicit format
final image = Pixer.fromMemoryWithFormat(bytes, ImageFormatEnum.Png);

Supported Formats

PNG, JPEG, GIF, WebP, BMP, ICO, TIFF

Image Operations

All direct operations return a new Pixer instance; the original is unchanged.

// Resize to fit within 800x600, preserving aspect ratio
final resized = image.resize(800, 600);

// Resize to exactly 800x600 (may distort)
final stretched = image.resizeExact(800, 600);

// Crop (x, y, width, height)
final cropped = image.crop(100, 100, 400, 300);

// Rotate
final r90 = image.rotate90();
final r180 = image.rotate180();
final r270 = image.rotate270();

// Flip
final hFlip = image.flipHorizontal();
final vFlip = image.flipVertical();

// Adjustments
final blurred = image.blur(2.5);       // Gaussian blur, sigma in pixels
final bright = image.brightness(30);   // Add to each channel; clamps to [0, 255]
final punchier = image.contrast(20);   // 0 = unchanged, positive boosts, negative flattens
final gray = image.grayscale();       // Preserves alpha and bit depth
final inverted = image.invert();

blur(0) returns an unchanged copy. Positive blur values must fit a normal 32-bit float; subnormal values are rejected with ArgumentError.

Resize Filters

image.resize(800, 600, filter: FilterTypeEnum.Lanczos3);  // Default, high quality
image.resize(800, 600, filter: FilterTypeEnum.Nearest);   // Fastest, pixelated
image.resize(800, 600, filter: FilterTypeEnum.Triangle);  // Bilinear
image.resize(800, 600, filter: FilterTypeEnum.CatmullRom);
image.resize(800, 600, filter: FilterTypeEnum.Gaussian);

Batch Processing

Use batch() to execute multiple operations in one native call without creating Dart-visible intermediate images. Operations are lazy until a terminal method is called.

final bytes = image
    .batch()
    .resize(800, 600)
    .grayscale()
    .encode(PixerJpegEncoder(quality: 85));

final result = image.batch().crop(10, 10, 200, 200).rotate90().toImage();
result.dispose();

image.batch().resize(320, 240).saveToFile('thumbnail.png');

The original Pixer is unchanged. Crop bounds and other sequence-dependent validation are evaluated against the output of preceding operations.

Saving & Encoding

// Save to file (format from extension)
image.saveToFile('output.webp');

// Encode to bytes
final pngBytes = image.encode(const PixerPngEncoder());
final jpegBytes = image.encode(PixerJpegEncoder(quality: 90));
final webpBytes = image.encode(const PixerWebPEncoder());

encode accepts any PixerEncoder: PixerPngEncoder, PixerJpegEncoder, PixerGifEncoder, PixerWebPEncoder, PixerBmpEncoder, PixerIcoEncoder, PixerTiffEncoder. Only PixerJpegEncoder currently has tunable options (quality, 1–100).

Metadata

final meta = image.getMetadata();
print('${meta.width}x${meta.height}, ${meta.colorType}');

// Or directly:
print('${image.width}x${image.height}');

Resource Management

Every Pixer owns a Rust handle. Call dispose() when done — including intermediates in a pipeline. Native builds assign a finalizer that frees the handle when the object is garbage collected, but finalizers are not guaranteed to run. Web builds require explicit disposal.

Batch operations keep their intermediates inside Rust. Only a toImage() result owns a new native handle that must be disposed.

final image = Pixer.fromFile('input.jpg');
try {
  final resized = image.resize(800, 600);
  try {
    resized.saveToFile('out.jpg');
  } finally {
    resized.dispose();
  }
} finally {
  image.dispose();
}

Error Handling

All errors throw typed PixerException subclasses:

Exception Cause
InvalidPathException Empty or invalid file path
IoException File read/write failure
DecodingException Cannot decode image data
EncodingException Cannot encode to format
UnsupportedFormatException Format not supported
InvalidDimensionsException Invalid width/height/crop bounds
InvalidPointerException Image already disposed
InvalidParameterException Scalar out of range (e.g. JPEG quality)
UnknownException Unclassified native error

Platforms

Linux, macOS, Windows, Android, iOS, Web (WebAssembly)

Roadmap

Current (v0.0.x)

  • x Load/save: PNG, JPEG, GIF, WebP, BMP, ICO, TIFF
  • x Resize (aspect-ratio-preserving & exact) with 5 filter types
  • x Crop, rotate (90/180/270), flip (H/V)
  • x Adjustments: blur, brightness, contrast, grayscale, invert
  • x Metadata access (width, height, color type)
  • x Encoder objects with JPEG quality support
  • x Lazy batch processing with image, byte, and file outputs
  • x Full platform support (Linux, macOS, Windows, Android, iOS)
  • x Web support through the Rust WebAssembly build

Planned — image crate

  • Hue rotation
  • Sharpen / unsharp mask
  • Thumbnail generation (optimized fast path)
  • Create blank images (solid color, transparent)
  • Composite images (overlay one image onto another at x, y)
  • Tiling
  • Animated GIF/WebP frame-level control

Planned — requires imageproc

  • Arbitrary angle rotation
  • Blend modes (multiply, screen, overlay, etc.)
  • Draw primitives (rectangles, circles, lines)
  • Text rendering onto images
  • Edge detection (Canny, Sobel)
  • Content-aware resize (seam carving)

Planned — requires other crates

  • EXIF metadata read/write/preserve (e.g. kamadak-exif)
  • Stitch images (horizontal/vertical concat, grid layout)
  • Watermarking

Exploring

  • Advanced color adjustments (saturation, gamma, curves)
  • GPU acceleration

Libraries

pixer
Fast image processing for Dart, backed by Rust.