Mr Chad |
01-18-2007 02:12 AM |
to change the font find:
PHP Code:
imagestring($im, 2, $left, (($i * $linespacing) - $linespacing + $top), $output[$i], $text_color);
also find the .GDF font you want and place in your cron directory then replace that line with:
PHP Code:
$font = imageloadfont(DIR . "/includes/cron/proggysquare.gdf"); imagestring($im, $font, $left, (($i * $linespacing) - $linespacing + $top), $output[$i], $text_color);
also remember that proggysquare.gdf is the GDF font i tested it with you need to rename that text to what ever your font is named.
to change the text color you just change this:
PHP Code:
$text_color = imagecolorallocate ($im, 69, 69, 69); //black text
|