私は乱数のキャプチャ画像を生成することになっているこのコードを持っています、それはローカルホストでは正常に動作していますが、私のホスティングでは動作していません、誰か助けてもらえますか?誰かが私がどこで間違っているのか教えてもらえますか?
<?php
session_start();
header('Content-type: image/jpeg');
$text= $_SESSION['secure'];
$font_size =30;
$image_width= 110;
$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<=30; $x++){
$x1 = rand(1,100);
$x2 = rand(1,100);
$y1 = rand(1,100);
$y2 = rand(1,100);
imageline($image, $x1, $x2, $y1, $y2, $text_color);
}
imagettftext($image, $font_size, 0, 15, 30, $text_color, 'font.ttf', $text);
imagejpeg($image);
?>
次に、上記のコードを含むファイルを新しいhtmlファイルに含めます。ここで、フォームを作成し、次のように画像を呼び出します。
<img src="generate.php"/>