look at
http://funmail.keystorm.net/MP!/test.php
The code is:
code:
<?php
//header("Content-type: image/jpeg");
$im = imagecreate(400, 30);
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// Replace path by your own font path
imagettftext($im, 20, 0, 10, 20, $black, "./fonts/decotype.ttf",
"Testing... Omega: &#937;");
imagejpeg($im, 'test.png');
imagedestroy($im);
?>
<img src=test.png border=1>
(I tried /fonts/decotype.ttf aswell, as stated in the php doc-page you told me)