svg-to-png.sh@8d88adffb779
svg-to-png.sh
Wed, 12 Apr 2023 01:53:42 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Wed, 12 Apr 2023 01:53:42 +0300
- changeset 379
- 8d88adffb779
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Circular primitive type is now an enum class
#!/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