putenv('GDFONTPATH=');
$height=50;
$width=100;
$im=ImageCreate($width,$height);
$white=ImageColorAllocate($im,255,255,255);
$black=ImageColorAllocate($im,0,0,0);
$fon=ImageColorAllocate($im,66,142,201);
ImageFill($im,0,0,$fon);
ImageTTFText($im,30,10,5,$height-5,$black,'verdana.ttf',$str);
Header('Content-type: image/gif');
ImageGif($im);
ImageDestroy($im);
скрипт выдает ошибку Warning: imagettftext() [function.imagettftext]: Could not find/open font in
шрифт лежит в той же папке, что и скрипт. Как исправить? :\