sorry, here's my code...
$height=30;
$width=130;
header ("Content-type: image/png");
$im = imagecreate ($width, $height);
$black = imagecolorallocate ($im, 0, 0, 0);
$dark = imagecolorallocate ($im, 11, 61, 115);
$light = imagecolorallocate ($im, 145, 168, 249);
$white = imagecolorallocate ($im, 255, 255, 255);
$textbox=imagettfbbox($height-7, 0, "ocraext.ttf", $text);
$textheight=$textbox[1]-$textbox[7];
$textwidth=$textbox[2]-$textbox[0];
$topspace=round(($height-$textheight)/2);
if (($textheight+$topspace-$height) < 0) $start=$height-6;
else $start=$textheight+$topspace;
imagettftext ($im, $height-7, 0, ($width-$textwidth-6), $start, $white, "ocraext.ttf", "$text");
imagepng ($im);
imagedestroy ($im);
many thanks,
ucbones