flags/make_flags.sh

Tue, 14 Jun 2022 23:04:49 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Tue, 14 Jun 2022 23:04:49 +0300
changeset 222
72b456f2f3c2
parent 6
73e448b2943d
permissions
-rwxr-xr-x

Edit tools: get rid of the preview polygon and render the result-to-be

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