@bokuweb/pixelmatch-wasm
v0.0.5
Published
A pixel-level image comparison library powered by wasm and SIMD feature, originally created to compare screenshots in tests.
Readme
pixelmatch-wasm
A pixel-level image comparison library powered by wasm and SIMD feature, originally created to compare screenshots in tests.
This library is ported from mapbox/pixelmatch
Install
npm i @bokuweb/pixelmatch-wasmUsage
import { pixelmatch } from "@bokuweb/pixelmatch-wasm";
pixelmatch(img1, img2, 800, 600, { threshold: 0.1 });Examples
API
pixelmatch(img1: Uint8Array, img2: Uint8Array, width: number, height: number, options?: PixelmatchOptions): { count: number; diff: Uint8Array };
img1,img2— Image data of the images to compare. Note: image dimensions must be equal.width,height— Width and height of the images. Note that all three images need to have the same dimensions.
options is an object literal with the following properties:
type PixelmatchOptions = {
includeAntiAlias: boolean;
threshold: number;
diffColor: [number, number, number, number];
antiAliasedColor: [number, number, number, number];
};threshold— Matching threshold, ranges from0to1. Smaller values make the comparison more sensitive.0.1by default.includeAntiAlias— Iftrue, disables detecting and ignoring anti-aliased pixels.falseby default.diffColor— The color of differing pixels in the diff output in[R, G, B, A]format.[255, 119, 119, 255]by default.antiAliasedColor— The color of anti-aliased pixels in the diff output in[R, G, B, A]format.[243, 156, 18, 255]by default.
