2001-08-13 18:37:10 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
font=arial.ttf
|
|
|
|
encoding=iso-8859-2
|
|
|
|
fontsize=24
|
|
|
|
symbolssize=35
|
|
|
|
blur=2
|
|
|
|
outline=1.5
|
|
|
|
|
|
|
|
make || exit
|
|
|
|
|
2001-08-16 11:42:10 +00:00
|
|
|
./subfont --blur $blur --outline $outline "$encoding" $fontsize "$font" &>log
|
|
|
|
status=$?
|
2001-08-13 18:37:10 +00:00
|
|
|
cat log
|
2001-08-16 11:42:10 +00:00
|
|
|
[ $status == 0 ] || exit
|
|
|
|
|
|
|
|
./subfont --append --blur $blur --outline $outline encodings/osd-mplayer $symbolssize osd/osd.pfb || exit
|
2001-08-13 18:37:10 +00:00
|
|
|
|
|
|
|
#cp font.desc *.raw ~/.mplayer/font/
|
|
|
|
|
|
|
|
exit
|
|
|
|
|
|
|
|
SIZE=`awk '/^bitmap size/ {print $NF}' log`+800
|
|
|
|
display -size $SIZE gray:$encoding-a.raw &
|
|
|
|
display -size $SIZE gray:$encoding-b.raw &
|
|
|
|
#convert -size $SIZE gray:$encoding-a.raw $encoding-a.png
|
|
|
|
#convert -size $SIZE gray:$encoding-b.raw $encoding-b.png
|