Floyd-Steinberg | 1x | B&W

Dither Method
Left / Right

Pixel Density
Up / Down

Color Mode
Tap / Click

e < 100) return; lastKeyPressTime = now; switch(e.key) { case 'ArrowRight': currentAlgorithmIndex = (currentAlgorithmIndex + 1) % algorithms.length; showInfo(); break; case 'ArrowLeft': currentAlgorithmIndex = (currentAlgorithmIndex - 1 + algorithms.length) % algorithms.length; showInfo(); break; case 'ArrowUp': currentScale = currentScale === 64 ? 1 : currentScale * 2; showInfo(); break; case 'ArrowDown': currentScale = currentScale === 1 ? 64 : currentScale / 2; showInfo(); break; } }); canvas.addEventListener('touchmove', (e) => e.preventDefault()); initCamera();