<?php /** *製作驗證碼 *1.啟動session *2.設定標頭 *3.創建畫布 *4.創建顏色 *5.創建隨機數並放到畫布上 *6.將得到的若幹隨機數放入session中 *7.添加干擾點或干擾線 *8.輸出畫布 *9.銷毀畫布資源 */ //1.啟動session session_st ...
<?php
/**
*製作驗證碼
*1.啟動session
*2.設定標頭
*3.創建畫布
*4.創建顏色
*5.創建隨機數並放到畫布上
*6.將得到的若幹隨機數放入session中
*7.添加干擾點或干擾線
*8.輸出畫布
*9.銷毀畫布資源
*/
//1.啟動session
session_start();
//2.設定標頭指定MIME輸出類型
header('Content-Type:image/png');
//3.創建畫布
$width = 100;
$height = 30;
$im = imagecreate($width,$height);
//4.創建顏色
$bgcolor = imagecolorallocate($im,255,255,255);
$textcolor = imagecolorallocate($im,0,255,255);
$randcolor = imagecolorallocate($im,mt_rand(0,200),mt_rand(0,200),mt_rand(0,200));
//5.創建隨機數並放到畫布上
$verify=null;
for($i=0;$i<4;$i++){
$temp = mt_rand(0,9);
$verify.=$temp;
imagestring($im,5,$i*15+15,8,$temp,imagecolorallocate($im,mt_rand(0,200),mt_rand(0,200),mt_rand(0,200)));
}
//6將生成的隨機數放入session中
$_SESSION['verify'] = $verify;
//7.添加干擾點
for($i=0;$i<100;$i++){
imagesetpixel($im,rand(0,$width),rand(0,$height),imagecolorallocate($im,rand(100,255),rand(100,255),rand(100,255)));
}
//8.將圖像輸出
imagepng($im); //imagegif()
//9.銷毀一圖像
imagedestroy($im);
?>