flags/make_flags.sh

Thu, 27 Feb 2020 12:23:42 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Thu, 27 Feb 2020 12:23:42 +0200
changeset 58
b7841cd31fb7
parent 6
73e448b2943d
permissions
-rwxr-xr-x

use glm::project instead of figuring out the conversion manually...

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