hscc

Soure code of <https://hugo.soucy.cc>.
git clone git://soucy.cc/hscc.git
Log | Files | Refs

commit 8cbcdc0b96bd88d05cd5bc384c4147c9d0a8c6ce
parent 6c55cf9683f0f483370cb8a5947c8bdef32f2e05
Author: Hugo Soucy <hugo@soucy.cc>
Date:   Wed, 15 Mar 2023 09:56:51 -0400

Start a dithering command

Diffstat:
Abin/dithers | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/bin/dithers b/bin/dithers @@ -0,0 +1,6 @@ +#!/bin/sh + +# With ImageMagick's convert +# Source: <https://nchrs.xyz/imagemagick.html> + +convert input.jpg -dither FloydSteinberg -colors 8 output.jpg