認証画像が出ない場合の対処法
/*$image = imagecreatetruecolor(100,30);
imagecolorallocate();
imageString();*/
for( $i = 0; $i<4; $i++){
$rand .= dechex(rand(1,15));
}
$image = imagecreatetruecolor(100,30); // 画像を作成します
$bgallocate = imagecolorallocate($image,0,0,0) //画像の背景色
$color = imagecolorallocate($image,255,255,255); >
imagestring($image,5,0,0,$rand,$color);
header("Content-type: image/jpeg");
imagejpeg($image);
?>
画像を出力できないのはなぜですか?
>;extension=php_gd2.dll の前のセミコロンが削除されています
-- ---解決策--- ------------------
コードは正しいです!
BOM ヘッダーがあるかどうかを確認してください
------解決策---------