svg-to-png.sh@083b0d8e220a
svg-to-png.sh
Thu, 14 Jul 2022 16:47:59 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Thu, 14 Jul 2022 16:47:59 +0300
- changeset 334
- 083b0d8e220a
- parent 162
-
3ebe1a0ca818
- permissions
- -rwxr-xr-x
Convert text model to CR+LF when saving
#!/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