svg-to-png.sh@6fe485a84d06
svg-to-png.sh
Sat, 05 Mar 2022 13:18:40 +0200
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sat, 05 Mar 2022 13:18:40 +0200
- changeset 161
- 6fe485a84d06
- parent 158
-
5bd755eaa5a8
- child 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Icons update
#!/bin/bash
mkdir --parents icons
for svgfile in $(find icons_svg -name '*.svg')
do
pngfile="icons/$(basename ${svgfile%.svg}.png)"
echo "$svgfile => $pngfile"
convert -background none "${svgfile}" "${pngfile}"
done