header("Content-type: image/jpeg");
$image= imagecreate(120,50);
$txt="hello world!";
$bg= imagecolorallocate($image,255,255,255);
$clr= imagecolorallocate($image,0,0,0);
imagettftext($image,12,0,5,35,$clr,'font.ttf',$txt);
imagejpeg($image);
これはWindows 7のローカルxamppサーバーで機能します
が、サーバーにアップロードすると画像が表示されません
しかし、imagettftext()をimagestring()に置き換えると機能し、
font.ttfファイルをアップロードしたと確信しています。