exozyme/img/montage.sh

12 lines
358 B
Bash
Raw Normal View History

#!/usr/bin/bash
2021-07-28 17:11:01 +00:00
cd icons
for old in *; do
new="$(echo "$old" | sed -e 's/.svg$/-large.svg/')"
echo $new
rsvg-convert "$old" -h 1440 -f svg -o "$new"
2021-07-28 17:11:01 +00:00
done
cd ..
montage -background white icons/*-large.svg -geometry 720x720 -tile 5x5 -border 30 -bordercolor transparent montage.png
convert montage.png -resize 50% montage.avif
rm icons/*-large.svg