svg-to-png.sh@f6eab2bd46c2
svg-to-png.sh
Sat, 05 Mar 2022 13:55:12 +0200
- author
- Teemu Piippo <teemu@hecknology.net>
- date
- Sat, 05 Mar 2022 13:55:12 +0200
- changeset 165
- f6eab2bd46c2
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
fixed the grid not being black on startup if settings has bright background color
#!/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