這篇文章主要介紹了基于PHP生成簡(jiǎn)單的驗(yàn)證碼的相關(guān)資料,需要的朋友可以參考下
直接給大家貼代碼了,具體代碼如下所示:
for($i=0;$i<5;$i++){
$rand .= dechex(rand(1,15)); // 隨機(jī)數(shù)16進(jìn)制 1-F 生成5個(gè)
}
$im = imagecreatetruecolor(100,30); // 驗(yàn)證碼的大?。ó?huà)板)
$bg = imagecolorallocate($im, 0,0,0); // 背景顏色
for($i<0;$i<100;$i++){
$color_dian = imagecolorallocate($im, rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()%100, rand()%30, $color_dian); // 在畫(huà)板上畫(huà)點(diǎn)
}
$color_font = imagecolorallocate($im, rand(88,255), rand(88,255), rand(100,255)); // 設(shè)置顏色 文字的顏色
$color_line = imagecolorallocate($im, rand(0,255),rand(0,255),rand(0,255)); // 設(shè)置顏色 線(xiàn)的顏色
imageline($im, rand(1,10), rand(5,13), rand(80,100), rand(5,15), $color_line); // 線(xiàn) 從第二個(gè)參數(shù)開(kāi)始 線(xiàn)頭的x軸 、y軸 、結(jié)束的x軸 、y軸、 賦予的顏色
imagestring($im,5,rand(4,60), rand(3,10), $rand ,$color_font); // 在畫(huà)板上 寫(xiě)入 生成的碼 從第二個(gè)參數(shù)開(kāi)始 字體的屬性、顯示在畫(huà)板上的位置x軸、y軸、隨機(jī)驗(yàn)證碼、顏色
// imagettftext($im, 12, 0, 12, 20, $color_font, 'haha.ttf', "我狠"); 在畫(huà)板上寫(xiě)字
header("Content-type:image/jpeg"); // 聲明要輸出的是什么東西
imagejpeg($im); // 以jpeg格式輸出圖片到瀏覽器
以上代碼是小編給大家介紹的基于PHP生成簡(jiǎn)單的驗(yàn)證碼,代碼附有注釋