svg-to-png.sh

Sun, 03 Jul 2022 21:49:02 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Sun, 03 Jul 2022 21:49:02 +0300
changeset 324
d9bab5d22c98
parent 162
3ebe1a0ca818
permissions
-rwxr-xr-x

Make the extrusion axis only visible when extruding

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