Hallo!
Wie sieht denn das bei Dir aus? (Pfad zu Deiner Font-Datei)
<?PHP
header("Content-type: image/gif");
$image = imagecreate(400, 100);
$farbe_body = imagecolorallocate($image, 204, 204, 204);
$farbe_font = imagecolorallocate($image, 102, 102, 204);
imagettftext($image, 10, 0, 20, 40, $farbe_font, "/usr/X11R6/lib/X11/fonts/TTF/lucon.ttf", "Font Lucida Console...");
imagegif($image);
?>
Gruß, Achim