Performs Atkinson dithering on an image.
npm install atkinson-ditherAn implementation of the Atkinson dithering algorithm suitable for Node.JS.
http://verlagmartinkoch.at/software/dither/index.html
npm install atkinson-dither
atkinson-dither -i input-file.png -o output-file.png
``javascript
var AtkinsonDither = require('atkinson-dither');
// Where imageData is loaded from Canvas or similar...
AtkinsonDither.ProcessImage(imageData);
``