├── .gitignore
├── Makefile.local
├── examples
├── templates.png
├── resolutions.png
├── example-google-maps.png
├── example-webgl-earth.png
├── example-xplanet-de.png
└── iso-country-flags-sheet-flat.png
├── svg
├── country-4x3
│ ├── eo.svg
│ ├── am.svg
│ ├── bq.svg
│ ├── mc.svg
│ ├── cd.svg
│ ├── ua.svg
│ ├── pl.svg
│ ├── mq.svg
│ ├── cr.svg
│ ├── bl.svg
│ ├── it.svg
│ ├── nc.svg
│ ├── pm.svg
│ ├── re.svg
│ ├── yt.svg
│ ├── co.svg
│ ├── fr.svg
│ ├── wf.svg
│ ├── ye.svg
│ ├── bg.svg
│ ├── ru.svg
│ ├── ie.svg
│ ├── gf.svg
│ ├── tf.svg
│ ├── ht.svg
│ ├── lc.svg
│ ├── at.svg
│ ├── gp.svg
│ ├── th.svg
│ ├── ng.svg
│ ├── id.svg
│ ├── lt.svg
│ ├── hu.svg
│ ├── bd.svg
│ ├── ch.svg
│ ├── tt.svg
│ ├── cg.svg
│ ├── to.svg
│ ├── ly.svg
│ ├── mv.svg
│ ├── pw.svg
│ ├── sn.svg
│ ├── ne.svg
│ ├── la.svg
│ ├── dk.svg
│ ├── bf.svg
│ ├── cz.svg
│ ├── ss.svg
│ ├── so.svg
│ ├── vn.svg
│ ├── sd.svg
│ ├── bh.svg
│ ├── is.svg
│ ├── kw.svg
│ ├── vc.svg
│ ├── ax.svg
│ ├── gy.svg
│ ├── ps.svg
│ ├── qa.svg
│ ├── jp.svg
│ ├── mr.svg
│ ├── gh.svg
│ ├── tl.svg
│ ├── bs.svg
│ ├── gw.svg
│ ├── dj.svg
│ ├── cm.svg
│ ├── ma.svg
│ ├── bv.svg
│ ├── cl.svg
│ ├── cu.svg
│ ├── dz.svg
│ ├── gg.svg
│ ├── tr.svg
│ ├── sr.svg
│ ├── se.svg
│ ├── pk.svg
│ ├── ag.svg
│ ├── mg.svg
│ ├── de.svg
│ ├── nl.svg
│ ├── pa.svg
│ └── tg.svg
└── country-squared
│ ├── am.svg
│ ├── bq.svg
│ ├── pl.svg
│ ├── mc.svg
│ ├── ua.svg
│ ├── bg.svg
│ ├── wf.svg
│ ├── at.svg
│ ├── ht.svg
│ ├── nc.svg
│ ├── bl.svg
│ ├── fr.svg
│ ├── gf.svg
│ ├── gp.svg
│ ├── it.svg
│ ├── mq.svg
│ ├── pm.svg
│ ├── re.svg
│ ├── ru.svg
│ ├── tf.svg
│ ├── ye.svg
│ ├── yt.svg
│ ├── co.svg
│ ├── cr.svg
│ ├── ie.svg
│ ├── th.svg
│ ├── lc.svg
│ ├── id.svg
│ ├── ng.svg
│ ├── lt.svg
│ ├── cd.svg
│ ├── bd.svg
│ ├── hu.svg
│ ├── ch.svg
│ ├── to.svg
│ ├── cm.svg
│ ├── sn.svg
│ ├── bf.svg
│ ├── cg.svg
│ ├── ly.svg
│ ├── tt.svg
│ ├── cz.svg
│ ├── gy.svg
│ ├── ma.svg
│ ├── ax.svg
│ ├── is.svg
│ ├── sd.svg
│ ├── ss.svg
│ ├── ps.svg
│ ├── kw.svg
│ ├── so.svg
│ ├── vn.svg
│ ├── dk.svg
│ ├── pw.svg
│ ├── bh.svg
│ ├── qa.svg
│ ├── vc.svg
│ ├── la.svg
│ ├── gw.svg
│ ├── jp.svg
│ ├── tl.svg
│ ├── mr.svg
│ ├── mv.svg
│ ├── gg.svg
│ ├── cu.svg
│ ├── bs.svg
│ ├── gh.svg
│ ├── bv.svg
│ ├── dj.svg
│ ├── dz.svg
│ ├── cl.svg
│ ├── ne.svg
│ ├── pk.svg
│ ├── sr.svg
│ ├── tr.svg
│ ├── pa.svg
│ ├── se.svg
│ ├── ag.svg
│ ├── tg.svg
│ └── de.svg
└── scripts
├── png-country-4x2.sh
├── png-country-squared.sh
└── sheets.sh
/.gitignore:
--------------------------------------------------------------------------------
1 | build/*/??.svg
2 | build/*/??.png
3 | build/png-*
4 | build/xplanet
5 |
--------------------------------------------------------------------------------
/Makefile.local:
--------------------------------------------------------------------------------
1 | local:
2 | @#echo "Skipping Makefile.local target." # add your build stuff here
3 |
--------------------------------------------------------------------------------
/examples/templates.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sqlitebrowser/iso-country-flags-svg-collection/HEAD/examples/templates.png
--------------------------------------------------------------------------------
/examples/resolutions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sqlitebrowser/iso-country-flags-svg-collection/HEAD/examples/resolutions.png
--------------------------------------------------------------------------------
/examples/example-google-maps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sqlitebrowser/iso-country-flags-svg-collection/HEAD/examples/example-google-maps.png
--------------------------------------------------------------------------------
/examples/example-webgl-earth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sqlitebrowser/iso-country-flags-svg-collection/HEAD/examples/example-webgl-earth.png
--------------------------------------------------------------------------------
/examples/example-xplanet-de.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sqlitebrowser/iso-country-flags-svg-collection/HEAD/examples/example-xplanet-de.png
--------------------------------------------------------------------------------
/examples/iso-country-flags-sheet-flat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sqlitebrowser/iso-country-flags-svg-collection/HEAD/examples/iso-country-flags-sheet-flat.png
--------------------------------------------------------------------------------
/svg/country-4x3/eo.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/scripts/png-country-4x2.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | RESOS="1280x960,640x480,320x240,160x120,80x60,40x30,20x15"
4 | STYLE="none glossy simple flat fancy"
5 |
6 | for s in $STYLE; do
7 | echo "Processing style $s ..";
8 | scripts/build.pl \
9 | --cmd svg2png \
10 | --out build \
11 | --res $RESOS \
12 | --svgs build/svg-country-4x2-$s
13 | done
14 |
15 | echo " ok.";
16 |
--------------------------------------------------------------------------------
/scripts/png-country-squared.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | RESOS="512x512,256x256,128x128,96x96,72x72,64x64,48x48,36x36,32x32,24x24,16x16"
4 | STYLE="none glossy simple flat fancy"
5 |
6 | for s in $STYLE; do
7 | echo "Processing style $s ..";
8 | scripts/build.pl --cmd svg2png --out build --res $RESOS \
9 | --svgs build/svg-country-squared-$s
10 | done
11 | echo " ok.";
12 |
--------------------------------------------------------------------------------
/svg/country-squared/am.svg:
--------------------------------------------------------------------------------
1 |
2 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/am.svg:
--------------------------------------------------------------------------------
1 |
2 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/bq.svg:
--------------------------------------------------------------------------------
1 |
2 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/mc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-squared/bq.svg:
--------------------------------------------------------------------------------
1 |
2 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/pl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/cd.svg:
--------------------------------------------------------------------------------
1 |
2 |
17 |
--------------------------------------------------------------------------------
/svg/country-squared/mc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-squared/ua.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/ua.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/pl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/mq.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/bg.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/cr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/bl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/it.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/nc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/pm.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/re.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/yt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/wf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/co.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/fr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/wf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/ye.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/at.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/ht.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-squared/nc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/bg.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-4x3/ru.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/bl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/fr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/gf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/gp.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/it.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/mq.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/pm.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/re.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/ru.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/tf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/ye.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/yt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/co.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/cr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/ie.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/ie.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/th.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-4x3/gf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/tf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/ht.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-4x3/lc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-4x3/at.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-squared/lc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-4x3/gp.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-squared/id.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-4x3/th.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/svg/country-4x3/ng.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-squared/ng.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-4x3/id.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-4x3/lt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/hu.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-squared/lt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/bd.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/ch.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/svg/country-squared/cd.svg:
--------------------------------------------------------------------------------
1 |
2 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/tt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-squared/bd.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-squared/hu.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-4x3/cg.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/to.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-squared/ch.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/svg/country-squared/to.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/ly.svg:
--------------------------------------------------------------------------------
1 |
2 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/cm.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-squared/sn.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-4x3/mv.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/svg/country-4x3/pw.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/sn.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/svg/country-squared/bf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
--------------------------------------------------------------------------------
/svg/country-4x3/ne.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/svg/country-4x3/la.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/dk.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/bf.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-squared/cg.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-squared/ly.svg:
--------------------------------------------------------------------------------
1 |
2 |
26 |
--------------------------------------------------------------------------------
/svg/country-4x3/cz.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-squared/tt.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
--------------------------------------------------------------------------------
/svg/country-squared/cz.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/ss.svg:
--------------------------------------------------------------------------------
1 |
2 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/so.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/vn.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/gy.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
20 |
--------------------------------------------------------------------------------
/svg/country-squared/ma.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
17 |
--------------------------------------------------------------------------------
/svg/country-4x3/sd.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-4x3/bh.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/ax.svg:
--------------------------------------------------------------------------------
1 |
2 |
28 |
--------------------------------------------------------------------------------
/svg/country-squared/is.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/is.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/kw.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-4x3/vc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
21 |
--------------------------------------------------------------------------------
/svg/country-squared/sd.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/ss.svg:
--------------------------------------------------------------------------------
1 |
2 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/ps.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-4x3/ax.svg:
--------------------------------------------------------------------------------
1 |
2 |
28 |
--------------------------------------------------------------------------------
/svg/country-squared/kw.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/so.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/vn.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/gy.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/dk.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/ps.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/scripts/sheets.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | set -e
3 |
4 | BGS="lightgrey white black transparent"
5 |
6 | echo "Generating sheets .."
7 |
8 | TILE=15
9 |
10 | for f in $(cd build; ls -d1 png-*); do
11 |
12 | for res in $(cd build/$f; ls -d1 res-*); do
13 | echo " processing build/$f/$res";
14 |
15 | OUTPD="build/$f/sheets";
16 | FLAGS="build/$f/$res/??.png";
17 |
18 | RES=`echo $res | sed s/^res-//g`
19 | RESX=`echo $RES | sed s/x.*$//g`
20 | RESY=`echo $RES | sed s/^.*x//g`
21 |
22 | if [ "$RESX" -gt 300 -o "$RESY" -gt 300 ]; then
23 | echo " skipping big resolution $RES.";
24 | else
25 | for bg in $BGS; do
26 | # echo " $bg";
27 | SHEET="$OUTPD/$res-$bg.png";
28 | CSS="$OUTPD/$res-$bg.css";
29 | HTML="$OUTPD/$res-$bg.html";
30 |
31 | mkdir -p $OUTPD;
32 | echo " $SHEET";
33 |
34 | montage \
35 | -limit memory 512 -limit map 512 \
36 | -font DroidSans-Bold.ttf \
37 | -pointsize 8 \
38 | -tile ${TILE}x \
39 | -geometry $RES! \
40 | $FLAGS \
41 | -label "%f" \
42 | -fill Black \
43 | -background $bg \
44 | $SHEET;
45 |
46 | echo " $CSS"
47 | ./scripts/css.py --cmd css --tile $TILE --resx $RESX --resy $RESY --image $res-$bg.png $FLAGS > $CSS
48 | echo " $HTML"
49 | ./scripts/css.py --cmd html --css $res-$bg.css $FLAGS > $HTML
50 |
51 | done
52 | fi
53 | done
54 | done
55 | echo "done."
56 |
--------------------------------------------------------------------------------
/svg/country-squared/pw.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/bh.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/qa.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/qa.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/vc.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/jp.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/mr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-squared/la.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/gh.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/gw.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/jp.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/tl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/tl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-4x3/bs.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/svg/country-4x3/gw.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/mr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/dj.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/mv.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-squared/gg.svg:
--------------------------------------------------------------------------------
1 |
2 |
28 |
--------------------------------------------------------------------------------
/svg/country-4x3/cm.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-squared/cu.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/svg/country-4x3/ma.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-squared/bs.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/svg/country-squared/gh.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-4x3/bv.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
27 |
--------------------------------------------------------------------------------
/svg/country-squared/bv.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
27 |
--------------------------------------------------------------------------------
/svg/country-4x3/cl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/dj.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-4x3/cu.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/svg/country-4x3/dz.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-squared/dz.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/svg/country-4x3/gg.svg:
--------------------------------------------------------------------------------
1 |
2 |
30 |
--------------------------------------------------------------------------------
/svg/country-squared/cl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
24 |
--------------------------------------------------------------------------------
/svg/country-squared/ne.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-squared/pk.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-squared/sr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
27 |
--------------------------------------------------------------------------------
/svg/country-squared/tr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/tr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/svg/country-4x3/sr.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-squared/pa.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
25 |
--------------------------------------------------------------------------------
/svg/country-squared/se.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
29 |
--------------------------------------------------------------------------------
/svg/country-4x3/se.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
29 |
--------------------------------------------------------------------------------
/svg/country-squared/ag.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-4x3/pk.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-4x3/ag.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-4x3/mg.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
24 |
39 |
--------------------------------------------------------------------------------
/svg/country-squared/tg.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-4x3/de.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
23 |
38 |
--------------------------------------------------------------------------------
/svg/country-squared/de.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
23 |
38 |
--------------------------------------------------------------------------------
/svg/country-4x3/nl.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
23 |
38 |
--------------------------------------------------------------------------------
/svg/country-4x3/pa.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------
/svg/country-4x3/tg.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
26 |
--------------------------------------------------------------------------------