svg-to-png.sh@3ea38fd469ca
svg-to-png.sh
Sun, 03 Jul 2022 23:54:22 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Sun, 03 Jul 2022 23:54:22 +0300
- changeset 328
- 3ea38fd469ca
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Replace item view with a text editor
#!/bin/bash
mkdir --parents icons
for svgfile in $(find icons_svg -name '*.svg')
do
pngfile="icons/$(basename ${svgfile%.svg}.png)"
if [[ ! -f "${pngfile}" ]]
then
echo "$svgfile => $pngfile"
convert -background none "${svgfile}" "${pngfile}"
fi
done