亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現PHP圖片驗證碼

發布時間:2021-10-08 11:11:23 來源:億速云 閱讀:120 作者:iii 欄目:開發技術

這篇文章主要講解了“如何實現PHP圖片驗證碼”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何實現PHP圖片驗證碼”吧!

一、顯示效果
如何實現PHP圖片驗證碼
二、代碼如下

復制代碼 代碼如下:

/*
 *  @Author fy
 */

$imgwidth =100; //圖片寬度
$imgheight =40; //圖片高度
$codelen =4; //驗證碼長度
$fontsize =20; //字體大小
$charset = 'abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789';
$font = 'Fonts/segoesc.ttf';

$im=imagecreatetruecolor($imgwidth,$imgheight);

$while=imageColorAllocate($im,255,255,255);
imagefill($im,0,0,$while); //填充圖像

//取得字符串
$authstr='';
$_len = strlen($charset)-1;
for ($i=0;$i<$codelen;$i++) {
 $authstr .= $charset[mt_rand(0,$_len)];
}

session_start();
$_SESSION['scode']=strtolower($authstr);//全部轉為小寫,主要是為了不區分大小寫

//隨機畫點,已經改為劃星星了
for ($i=0;$i<$imgwidth;$i++){
    $randcolor=imageColorallocate($im,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));
 imagestring($im,mt_rand(1,5), mt_rand(0,$imgwidth),mt_rand(0,$imgheight), '*',$randcolor);
    //imagesetpixel($im,mt_rand(0,$imgwidth),mt_rand(0,$imgheight),$randcolor);
}
//隨機畫線,線條數量=字符數量(隨便)
for($i=0;$i<$codelen;$i++)

 $randcolor=imagecolorallocate($im,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
 imageline($im,0,mt_rand(0,$imgheight),$imgwidth,mt_rand(0,$imgheight),$randcolor);
}

$_x=intval($imgwidth/$codelen); //計算字符距離
$_y=intval($imgheight*0.7); //字符顯示在圖片70%的位置
for($i=0;$i<strlen($authstr);$i++){

 $randcolor=imagecolorallocate($im,mt_rand(0,150),mt_rand(0,150),mt_rand(0,150));
 //imagestring($im,5,$j,5,$imgstr[$i],$color3);
 // imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
 imagettftext($im,$fontsize,mt_rand(-30,30),$i*$_x+3,$_y,$randcolor,$font,$authstr[$i]);

}

//生成圖像
header("content-type:image/PNG");
imagePNG($im);
imageDestroy($im);

感謝各位的閱讀,以上就是“如何實現PHP圖片驗證碼”的內容了,經過本文的學習后,相信大家對如何實現PHP圖片驗證碼這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

拉孜县| 临泽县| 穆棱市| 水富县| 陆良县| 绥江县| 岳阳县| 寻乌县| 淳安县| 古浪县| 五莲县| 武邑县| 福贡县| 交口县| 武功县| 当阳市| 油尖旺区| 黑水县| 闽侯县| 汉中市| 平泉县| 张家界市| 工布江达县| 永春县| 奉新县| 桂林市| 盐源县| 绵阳市| 大方县| 龙海市| 阿拉善右旗| 竹溪县| 兴化市| 平山县| 金沙县| 德惠市| 琼结县| 安达市| 航空| 平度市| 皋兰县|