svg-to-png.sh@3a4b132b8353
svg-to-png.sh
Tue, 28 Jun 2022 19:47:34 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Tue, 28 Jun 2022 19:47:34 +0300
- changeset 300
- 3a4b132b8353
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Fix build warnings, size_type of QVector changes from Qt5 to Qt6 so we need an alias for it
#!/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