💾 Archived View for station.martinrue.com › smokey › 6c39d0138181454a8082e6929acb4d9c captured on 2022-07-16 at 18:42:51. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
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–Steinberg_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