svg-to-png.sh

Sat, 08 Apr 2023 15:03:54 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Sat, 08 Apr 2023 15:03:54 +0300
changeset 344
a24da8de2a3b
parent 162
3ebe1a0ca818
permissions
-rwxr-xr-x

Changed color button to a line edit+button combination

#!/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

mercurial