ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/www/drawbanner
Revision: 1.2
Committed: Sun Sep 16 15:24:14 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.1: +4 -3 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #!/bin/bash
2    
3 root 1.2 DEST="$1"
4     TEXT="$2"
5     HEIGHT="$3"
6 root 1.1
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 0x1.5 \
14     -fill gold -stroke none -annotate +25+65 "$TEXT" \
15     -trim +repage \
16 root 1.2 "$DEST"
17 root 1.1