flags/make_flags.sh

Fri, 01 Jul 2022 23:51:16 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Fri, 01 Jul 2022 23:51:16 +0300
changeset 314
4642ba1218e8
parent 6
73e448b2943d
permissions
-rwxr-xr-x

Added rudimentary cylinder extrusion into circle tool.
I really had to think which way the vectors are in this one

#!/bin/bash
for flag in *.svg
do
	flag_png="${flag%.svg}.png"
	echo "$flag => $flag_png"
	inkscape -z -e ${flag_png} -w 64 $flag
done

mercurial