Halftone-QRCode-Generator
Halftone-QRCode-Generator copied to clipboard
Dithering issue in master/halftoneqr.js
master/halftoneqr.js, line 113:
var width = Math.sqrt(d.length / 4) / pixelSize;
should be:
var width = Math.sqrt(d.length / 4);
to make the atkinson dithering work correctly.