svg-to-png.sh

Sun, 13 Mar 2022 20:26:28 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 13 Mar 2022 20:26:28 +0200
changeset 182
27fb1c3c9fbb
parent 162
3ebe1a0ca818
permissions
-rwxr-xr-x

add ui file to object editor

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