您好,登錄后才能下訂單哦!
小編給大家分享一下怎么在php中生成驗證碼圖片,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1.獲取生成驗證碼字體:
在php文件路徑新建一個fonts
文件夾,里面有字體文件。
//判定字體資源 if(empty($fonts)) $fonts="arial.ttf"; //確認字體路徑 $fonts=__DIR__."/fonts/".$fonts; $fonts=str_replace("/","\\",$fonts);
2.制作畫布,隨機分配背景色
$img=imagecreatetruecolor($width,$height); $bg_color=imagecolordeallocate($img,mt_rand(200,255),mt_rand(200,250)); imagefilter($img,0,0,$bg_color);
3.增加干擾點、線
//增加干擾點:* for($i = 0;$i < 50;$i++) { //隨機顏色 $dots_color = imagecolorallocate($img, mt_rand(140,190), mt_rand(140,190), mt_rand(140,190)); //使用*號作為干擾點 imagestring($img, mt_rand(1,5), mt_rand(0,$width), mt_rand(0,$height), '*', $dots_color); } //增加干擾線 for($j = 0;$j < 10;$j++) { //隨機線段顏色 $line_color = imagecolorallocate($img, mt_rand(80,130), mt_rand(80,130), mt_rand(80,130)); //隨機線段 imageline($img,mt_rand(0,$width),mt_rand(0,$height),mt_rand(0,$width),mt_rand(0,$height),$line_color); }
4.將驗證碼放入圖片
$captcha=array(3,4,'a','i');//可以自己使用寫一個方法生成數組; $length=sizeof($captcha); for($i = 0;$i < $length;$i++){ //給每個字符分配不同顏色 $c_color = imagecolorallocate($img, mt_rand(0,60), mt_rand(0,60), mt_rand(0,60)); //增加字體空間、大小、角度顯示 imagettftext($img,mt_rand(15,25),mt_rand(-45,45),$width/($length+1)*($i+1),mt_rand(25,$height-25),$c_color,$fonts,$captcha[$i]); }
5.保存圖片
imagejpeg($img,"test.jpg",100);
以上是“怎么在php中生成驗證碼圖片”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。