Here's a working image on my site that you can use as reference...
<?php
header("Content-type: image/png");
$totalwidth = 450;
$totalheight = 40;
$image = imagecreate( $totalwidth,$totalheight );
$red = imagecolorallocate($image, 255,0,0);
$black = imagecolorallocate($image, 0,0,0);
$font = "/home/sites/home/web/times.ttf";
ImageTTFText ($im, 20, 0, 10, 20, $white, "./arial.ttf",
"Testing... Omega: Ω");
//imageTTFtext( $image, 50, 0, 20, 200, $black, $font, "Atec" );
//imageline( $image, 450, 30, 0, 30, $black );
imagepng($image);
ImageDestroy ($image);
?>