UNPKG

@thi.ng/pixel-dither

Version:

Extensible image dithering w/ various algorithm presets

12 lines 374 B
import type { DitherKernel } from "./api.js"; /** * Floyd-Steinberg dither kernel. * * @remarks * References: * * - https://en.wikipedia.org/wiki/Floyd%E2%80%93Steinberg_dithering * - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html */ export declare const FLOYD_STEINBERG: DitherKernel; //# sourceMappingURL=floyd-steinberg.d.ts.map