php はランダムな検証コードを生成します。
for($i=0;$i
$rand.=dechex(rand(1,15));
}
/ /画像サイズを設定します
$im=imagecreatetruecolor(100,30);
//カラーを設定します
$bg=imagecolorallocate($im,0,0,0);
$te=imagecolorallocate( $im,255,255,255);
//画像に文字列を書き込みます
imagestring($im,rand(3,6),rand(3,70),rand(0,16),$rand, $ te);
//出力画像
header("Content-type: image/jpeg");
imagejpeg($im);
?>
なぜ写真には赤い十字が描かれているのですか? 。
gd ライブラリがオープンされました
-----解決策---------