svg-to-png.sh@59b6027b9843
svg-to-png.sh
Sun, 26 Jun 2022 21:00:06 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Sun, 26 Jun 2022 21:00:06 +0300
- changeset 263
- 59b6027b9843
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Move render layer files to new src/layers/ directory
#!/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