Hey @sk Would you mind telling me how you do photo dithering over at your image board?
9 months ago
i played around with the various dithering strategies and i landed on ordered dithering. it may not be as accurately representative and well defined as the floyd-steinberg, but i just love the crosshatch aesthetic 路 9 months ago
Also surprisingly straightforward to implement yourself https://en.wikipedia.org/wiki/Floyd鈥揝teinberg_dithering 路 9 months ago
There is also dither: https://github.com/makeworld-the-better-one/dither (command line wrapper: https://github.com/makeworld-the-better-one/didder) 路 9 months ago
Awesome, exactly what i wanted to know. Thank you very much!! 路 9 months ago
for sure! it's not too interesting i'm afraid. it's just using imagemagick under the hood https://github.com/imagemagick/imagemagick
the exact command i use is
convert $INPUT -resize '512x512>' -ordered-dither o2x2,3 $OUTPUT
路 9 months ago