summaryrefslogtreecommitdiffstats
path: root/TOOLS/subfont-c/fontgen
blob: 8e5224c5e3c865fd0453a3649c0dae7da3e91d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash

# Font Generator script by alex@naxine.org

if [ -z $1 ]; then
    echo "fontgen: too few parameters"
    echo "fontgen: Usage: $0 <input font filename> <output dir>"
    exit
fi

if [ ! -r $1 ]; then
    echo "fontgen: input font file not readable"
    exit
fi

subfont_exec=subfont
#unicode="--unicode"
#font=arial.ttf
#font=mints-mild.pcf
#font=/home/alex/artwiz-mints-mild-latin2.hex
font=$1
if [ ! -z $2 ]; then
    outdir="--outdir $2"
    mkdir $2
fi
#font=verdana.ttf
encoding=iso-8859-2
fontsize=12
symbolssize=10
blur=2
outline=1.5

if [ ! -x $subfont_exec ]; then
    echo "fontgen: 'subfont' not found or not executable!"
    echo "fontgen: trying to make sources"
    
    make || exit
    
    if [ ! -x $subfont_exec ]; then
	echo "failed"
	exit
    fi
    
    exit
fi

# subfont <encoding> <size> <input>
echo "fontgen: creating font..."
./$subfont_exec $outdir $unicode --blur $blur --outline $outline "$encoding" $fontsize "$font" || exit
echo "fontgen: creating osd symbols..."
./$subfont_exec $outdir --append --blur $blur --outline $outline encodings/osd-mplayer $symbolssize osd/osd.pfb || exit

exit