@thi.ng/pixel-dither
Version:
Extensible image dithering w/ various algorithm presets
14 lines • 374 B
TypeScript
import type { DitherKernel } from "./api.js";
/**
* Basic 1D (row-based) error diffusion.
*/
export declare const DIFFUSION_ROW: DitherKernel;
/**
* Basic 1D (column-based) error diffusion.
*/
export declare const DIFFUSION_COLUMN: DitherKernel;
/**
* Basic 2D error diffusion
*/
export declare const DIFFUSION_2D: DitherKernel;
//# sourceMappingURL=diffusion.d.ts.map