svg-to-png.sh@73b6c478378e
svg-to-png.sh
Sun, 09 Apr 2023 01:12:00 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Sun, 09 Apr 2023 01:12:00 +0300
- changeset 359
- 73b6c478378e
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
The renderer now centers on the grid origin, not the part origin
#!/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