
PHP код:
$width=130;
$height=14;
$image=imagecreate($width,$height);
$fcolor=imagecolorallocate($image,204,204,204);
$bcolor=imagecolorallocate($image,255,255,255);
$font="verdana.ttf";
$pt=7;
$area=imagettfbbox($pt,0,$font,$name);
$ttfwidth=$area[5];
$ttfheight=$area[7];
$text="hallo text;
$x=5;
$y=10;
imagettftext($image,$pt,0,$x,$y,$bcolor,$font,$text);
header("Content-type: image/gif");
imagegif($image);
imagedestroy($image);