--- deliantra/arch/spell/Rune/genrunes 2006/05/16 15:59:47 1.3 +++ deliantra/arch/spell/Rune/genrunes 2007/09/03 01:27:41 1.9 @@ -6,34 +6,35 @@ ( while read file text color font; do font=$(fc-list "$font" file | tail -1 | sed -e 's/..$//') - convert -size 32x32 xc:none -set hinting on \ - -font "$font" -pointsize 32 -fill "$color" -gravity center -draw "text 0,0 \"$text\"" "$file" + convert -size 64x64 xc:none -set hinting on \ + -font "$font" -pointsize 64 -fill "$color" -gravity center -draw "text 0,0 \"$text\"" "$file" pngx "$file" >/dev/null done ) <