ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/www/drawbanner
Revision: 1.3
Committed: Sun Sep 16 15:31:48 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/bin/bash
2
3 DEST="$1"
4 TEXT="$2"
5 HEIGHT="$3"
6
7 : ${HEIGHT:=22}
8
9 convert \
10 -size 1000x200 xc:none -font El_Abogado_Loco.ttf \
11 -pointsize "$HEIGHT" -channel RGBA \
12 -fill black \
13 -stroke black -strokewidth 8 -annotate +25+65 "$TEXT" -blur 2x1.5 \
14 -fill gold -stroke none -annotate +25+65 "$TEXT" \
15 -trim +repage \
16 "$DEST"
17