//認証コード画像を生成
Header("コンテンツタイプ: 画像/PNG");
srand((double)microtime()*1000000);//以下の乱数生成の使用を容易にするために、乱数を生成するシードをまきます
session_start();//乱数をセッションに保存します
$_SESSION['authnum']="";
$im = imagecreate(62,20); //画像の背景サイズを設定します
$black = ImageColorAllocate($im, 0,0,0) // 3 色を設定します
;
$white = ImageColorAllocate($im, 255,255,255);
$gray = ImageColorAllocate($im, 200,200,200);
imagefill($im,0,0,$gray); //領域塗りつぶし法を採用、(0,0)を設定
while(($authnum=rand() 0000)
// 4 桁の整数の検証コードを画像に描画します
$_SESSION['authnum']=$authnum;
画像文字列($im, 5, 10, 3, $authnum, $black);
//col color を使用して、image で表される画像の x、y 座標に文字列 s を描画します (画像の左上隅は 0, 0)。
//フォントが 1、2、3、4、または 5 の場合は、内蔵フォントを使用します
for($i=0;$i
{
$randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()p , rand()0 , $randcolor);
}
画像PNG($im);
ImageDestroy($im);
?>