This repository has been archived on 2024-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
nix-packages/lib/crushpng.sh

14 lines
221 B
Bash
Raw Normal View History

2022-11-08 20:11:11 +00:00
#!/bin/sh
set -ex
2023-09-09 10:23:47 +00:00
[ "$(wc -c $1 | awk '{print $1}')" -le $3 ] && exit 0
2022-11-08 20:11:11 +00:00
for i in $(seq 100 -1 0); do
2023-09-09 10:23:47 +00:00
cat $1 | pngquant --quality 0-$i - > $2
2022-11-08 20:11:11 +00:00
[ "$(wc -c $2 | awk '{print $1}')" -le $3 ] && exit 0
done
rm $2
exit 1