svg-to-png.sh@34c6e7bc4ee1
svg-to-png.sh
Sun, 12 Jun 2022 23:59:37 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Sun, 12 Jun 2022 23:59:37 +0300
- changeset 215
- 34c6e7bc4ee1
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Reimplement the axes program as a layer that can be added to PartRenderer
#!/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