1#!/bin/sh
2
3LNG=lv
4
5Ball="Bumba"
6Goal="Mērķis"
7Coin="Monēta"
8Switch="Slēdzis"
9Texture="Tekstūra"
10FallOut="Kritiens"
11
12FONT=FreeMono-Negreta
13PTSIZE=56
14DENSITY=70
15
16convert \
17    \( -size 256x64 xc:transparent -font $FONT -pointsize $PTSIZE \
18        -density $DENSITY -channel A -gravity Center \) \
19    \( -clone 0 -annotate +0+0 "$Ball"    \) \
20    \( -clone 0 -annotate +0+0 "$Goal"    \) \
21    \( -clone 0 -annotate +0+0 "$Coin"    \) \
22    \( -clone 0 -annotate +0+0 "$Switch"  \) \
23    \( -clone 0 -annotate +0+0 "$Texture" \) \
24    \( -clone 0 -annotate +0+0 "$FallOut" \) \
25    -delete 0 -append \
26    -gravity North -background transparent -extent 256x512 \
27    -depth 8 words-$LNG.png
28
29