iso-country-flags-svg-colle.../scripts/png-country-4x2.sh

16 lines
289 B
Bash
Raw Permalink Normal View History

#!/bin/sh
2014-04-08 11:46:24 +02:00
RESOS="1280x960,640x480,320x240,160x120,80x60,40x30,20x15"
STYLE="none glossy simple flat fancy"
for s in $STYLE; do
2011-12-18 14:47:19 +01:00
echo "Processing style $s ..";
2014-04-08 11:46:24 +02:00
scripts/build.pl \
--cmd svg2png \
--out build \
--res $RESOS \
--svgs build/svg-country-4x2-$s
done
2011-12-18 14:47:19 +01:00
echo " ok.";