This repository has been archived on 2024-01-05. You can view files and clone it, but cannot push or open issues or pull requests.
website/about/montage.sh

12 lines
350 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 1080 -f svg -o "$new"
done
cd ..
2022-05-21 19:17:30 +00:00
montage -background none icons/*-large.svg -geometry 540x540 -tile 6x6 -border 30 -bordercolor none montage.png
2021-07-30 03:11:39 +00:00
convert montage.png -resize 50% montage.webp
rm icons/*-large.svg