でホストされている Web サイトにキャプチャ画像を表示しようとしています000webhost
が、次のエラーが表示されます。
imagettftext() [function.imagettftext]: 20 行目の /home/a3594760/public_html/captcha1.php でフォントが見つからない/開くことができませんでした
同じフォルダーに MAGENTOB.TTF ファイルがあります。私のコードは私のローカルホストで動作しているのと同じコードですが、ホストされているとエラーが表示され000webhost
ます:
<?php
include_once('includes/session.php');
$_SESSION['secure']=rand(1000,9999);
header('content-type:image/jpeg');
$text=$_SESSION['secure'];
$font_size=25;
$image_width=200;
$image_height=40;
$image=imagecreate($image_width,$image_height);
imagecolorallocate($image,255,255,255);
$text_color=imagecolorallocate($image,0,0,0);
for($x=1;$x<=40;$x++)
{
$x1=rand(1,120);
$x2=rand(1,120);
$y1=rand(1,120);
$y2=rand(1,120);
imageline($image,$x1,$y1,$x2,$y2,$text_color);
}
imagettftext($image,$font_size,0,15,30,$text_color ,'MAGNETOB.TTF',$text);
imagejpeg($image);
?>
どうしたの?