svg-to-png.sh@d862721d19a3
svg-to-png.sh
Wed, 29 Jun 2022 16:33:49 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Wed, 29 Jun 2022 16:33:49 +0300
- changeset 309
- d862721d19a3
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Fixed ModelId being used to identify both models and elements, added ElementId to identify elements
#!/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