💾 Archived View for station.martinrue.com › smokey › 6c39d0138181454a8082e6929acb4d9c captured on 2023-03-20 at 19:16:53. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
Hey @sk Would you mind telling me how you do photo dithering over at your image board?
1 year 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 · 1 year ago
Also surprisingly straightforward to implement yourself https://en.wikipedia.org/wiki/Floyd–Steinberg_dithering · 1 year ago
There is also dither: https://github.com/makeworld-the-better-one/dither (command line wrapper: https://github.com/makeworld-the-better-one/didder) · 1 year ago
Awesome, exactly what i wanted to know. Thank you very much!! · 1 year 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
· 1 year ago