UNPKG

@thi.ng/pixel-dither

Version:

Extensible image dithering w/ various algorithm presets

10 lines (9 loc) 136 B
const FLOYD_STEINBERG = { ox: [1, -1, 0, 1], oy: [0, 1, 1, 1], weights: [7, 3, 5, 1], shift: 4 }; export { FLOYD_STEINBERG };