arq-front_image-dithered/scripts/dither_nb.sh

12 lines
546 B
Bash
Raw Permalink Normal View History

2025-08-12 13:46:49 +02:00
# YOUHAVETOINSTALLIMAGEMAGICKONLINUXTORUNTHISSCRIPT. (SEE the .bat script for Windows)
# Source : https://site.sarahgarcin.com/web-frugal/#images
# USE :
# 1- place the dither_nb.sh in a folder with your images.
# 2- Make sure the .sh is executable.
# 3- Double-click: Its done !
# TODO : Test this script on linux. (if you have tested it and it works, let me know !)
for img in *.jpg;
do convert "$img" -resize 400x400 -strip -quality 86 -colorspace Gray -dither FloydSteinberg -colors 4 "dither_$img";
done