@thi.ng/pixel-dither
Version:
Extensible image dithering w/ various algorithm presets
12 lines • 379 B
TypeScript
import type { DitherKernel } from "./api.js";
/**
* Jarvis-Judice-Ninke dither kernel.
*
* @remarks
* References:
*
* - https://en.wikipedia.org/wiki/Error_diffusion#minimized_average_error
* - https://tannerhelland.com/2012/12/28/dithering-eleven-algorithms-source-code.html
*/
export declare const JARVIS_JUDICE_NINKE: DitherKernel;
//# sourceMappingURL=jarvis.d.ts.map