国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

利用php生成驗證碼

2024-05-04 23:55:25
字體:
來源:轉載
供稿:網友

話不多說,請看代碼:

php;"><?php /** * php生成驗證碼 * @param $width 畫布寬 * @param $height 畫布高 * @param $vcodelen 驗證碼長度 * @param $pointnum 干擾像素點數量 * @param $linenum 干擾線條數量 * * 思路:創建驗證碼畫布,生成并填充背景色,生成驗證碼內容/干擾像素點/線,填充到畫布,輸出。 */ $width = 100; $height = 30; $vcodelen = 4; $pointnum = 200; $linenum = 3; // 創建畫布 $image = imagecreatetruecolor($width, $height); // 創建色塊 $bgcolor = imagecolorallocate($image, 255, 255, 255); // 填充畫布背景色 imagefill($image, 0, 0, $bgcolor); // 驗證碼內容 for ($i=0; $i < $vcodelen; $i++) {   // 字體大小  $fontsize = 5;  // 字體顏色,顏色在限定范圍內隨機  $fontcolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));  $data = 'abcdefghijklmnopqrstuvwxyz0123456789';  // 驗證碼內容在以上字符串內隨機截取  $fontcontent = substr($data, rand(0,strlen($data)),1);  // 字符串顯示位置  $x = ($i*$width/4)+rand(5,15);  $y = rand(5,10);  // 字符串填充圖片  // imagestring的字體大小可選1-5,字體再大需要用imagettftext函數(需要字體文件)  imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);  // imagettftext($image, $fontsize, 0, $x, $y, $fontcolor, '/font/Geneva.dfont', $fontcontent); } // 干擾像素點 for ($i=0; $i < $pointnum; $i++) {   $pointcolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));  // 畫布填充像素點函數  imagesetpixel($image, rand(0,$width), rand(0,$height), $pointcolor); } // 干擾線條 for ($i=0; $i < $linenum; $i++) {   $linecolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));  // 畫布填充線條函數  imageline($image, rand(0,$width), rand(0,$height), rand(0,$width), rand(0,$height), $linecolor); } // 圖片輸出格式 header('content-type: image/png'); // 輸出驗證碼圖片 imagepng($image); // 銷毀畫布 imagedestroy($image);?>

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持VeVb武林網!


注:相關教程知識閱讀請移步到PHP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 高邮市| 赫章县| 丰城市| 安庆市| 西林县| 梅河口市| 台湾省| 唐河县| 武定县| 白水县| 临泽县| 濉溪县| 和硕县| 乐平市| 芒康县| 荥阳市| 宿迁市| 深圳市| 皋兰县| 湖口县| 新乐市| 博客| 奈曼旗| 黄大仙区| 南安市| 饶阳县| 汶上县| 雅江县| 万山特区| 庆阳市| 喀喇| 定兴县| 宜兰市| 南川市| 潍坊市| 虞城县| 建瓯市| 铁力市| 临汾市| 海南省| 墨竹工卡县|