svg-to-png.sh@4642ba1218e8
svg-to-png.sh
Fri, 01 Jul 2022 23:51:16 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Fri, 01 Jul 2022 23:51:16 +0300
- changeset 314
- 4642ba1218e8
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Added rudimentary cylinder extrusion into circle tool.
I really had to think which way the vectors are in this one
#!/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