php實現自動生成驗證碼的實例講解
現在驗證碼在表單中的應用越來越多瞭,但是如果用js來實現總覺得不太方便,因此使用php來實現下,在此記錄下。
當然,我們也可以封裝成一個函數,以後使用的時候也是很方便的,這裡並未封裝,感興趣的小夥伴可以自己封裝下。
具體實現代碼:
新建一個cap_sz.php文件:
<?php session_start(); //設置session,一定要在頂部 $width = 150; //設置圖片寬為300像素 $height = 40; //設置圖片高為40像素 $image = imagecreatetruecolor($width, $height); //設置驗證碼大小的函數 $bgcolor = imagecolorallocate($image, 255, 255, 255); //驗證碼顏色RGB為(255,255,255)#ffffff imagefill($image, 0, 0, $bgcolor); //區域填充 $cap_code = ""; for($i=0;$i<4;$i++){ $fontsize = 7; //設置字體大小 $fontcolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120)); //數字越大,顏色越淺,這裡是深顏色0-120 $fontcontent = rand(0,9); $cap_code.=$fontcontent; //.=連續定義變量 $x = ($i*150/4)+rand(5,10); $y = rand(5,10); //設置坐標 imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor); } $_SESSION['code'] = $cap_code; //存到session //設置幹擾元素,設置雪花點 for($i=0;$i<300;$i++){ $inputcolor = imagecolorallocate($image, rand(50,200), rand(20,200), rand(50,200)); //設置顏色,20-200顏色比數字淺,不幹擾閱讀 imagesetpixel($image, rand(1,149), rand(1,39), $inputcolor); //畫一個單一像素的元素 } //增加幹擾元素,設置橫線(先設置線的顏色,在設置橫線) for ($i=0;$i<4;$i++) { $linecolor = imagecolorallocate($image, rand(20,220), rand(20,220),rand(20,220)); //設置線的顏色 imageline($image, rand(1,149), rand(1,39), rand(1,299), rand(1,149), $linecolor); } //因為有些瀏覽器,訪問的content-type會是文本型(亂碼),所以我們需要設置成圖片的格式類型 header('Content-Type:image/png'); imagepng($image); //建立png函數 imagedestroy($image); //結束圖形函數,消除$image
實例擴展:
<?php $iC = new idCode(5,60,30); $iC->createPNG(); class idCode{ private $words = array('a','b', 'c','d','e','f','g','h','i','j','k','l', 'm','n','o','p','q','r','s','t','u','v', 'w','x','y','z','A','B','C','D','E','F', 'G','H','I','J','K','L','M','N','O','P', 'Q','R','S','T','U','V','W','X','Y','Z', '0','1','2','3','4','5','6','7','8','9'); private $fonts; private $count;//驗證碼字符數 private $height; private $width; private $path = '..\myfolder\fonts'; private $keys; //構造函數 public function __construct($count,$width,$height){ $this->count = $count; $this->getFonts(); $this->height = $height; $this->width = $width; } private function getFonts(){ $dir = dir($this->path); while(false !== ($file = $dir->read())){ if($file != '.' && $file != '..'){ $this->fonts[count($this->fonts)] = basename($file); } } $dir->close(); } private function createKeys(){ for($i = 0;$i < $this->count;$i++){ $this->keys[$i]['char'] = $this->words[rand(0,count($this->words)-1)]; //使用字體路徑標識 $this->keys[$i]['filename'] = $this->path.'\\'.$this->fonts[rand(0,count($this->fonts)-1)]; } } public function createPNG(){ $this->createKeys(); //創建畫佈以及顏色塊兒 $bg = imagecreatetruecolor($this->width + 10*2,$this->height + 3*2);//兩邊留10px空白,上下3px $grey = imagecolorallocate($bg,155,155,155); $blue = imagecolorallocate($bg,0x00,0x00,0xff); //填充背景 imagefill($bg,0,0,$grey); //添加字符 $pwidth = $this->width/$this->count; $x;$y; for($i = 0;$i < $this->count;$i++){ $rotation = rand(-40,40);//偏轉角度±40° $fontsize = 33; $width_txt; $height_txt; do{ $fontsize--; $bbox = imagettfbbox($fontsize,$rotation,$this->keys[$i]['filename'],$this->keys[$i]['char']); $width_txt = $bbox[2] - $bbox[0];//x 0 2 4 6,y1 3 5 7;左下,右下,右上,左上 $height_txt = $bbox[7] - $bbox[1]; }while($fontsize > 8 && ($height_txt > $this->height || $width_txt > $pwidth)); $fontcolor = imagecolorallocate($bg,rand(0,255),rand(0,255),rand(0,255)); $x = 8 + $pwidth*$i + $pwidth/2 - $width_txt/2;//x坐標基本位置 $y = $this->height/2 - $height_txt/2; imagettftext($bg,$fontsize,$rotation,$x,$y,$fontcolor,$this->keys[$i]['filename'],$this->keys[$i]['char']); } //繪制幹擾線 //根據字體酌情增加幹擾線 imageline($bg,0,15,40,10,$blue); //圖像輸出頭文件 header('Content-type:image/png'); //輸出png圖像 imagepng($bg); //清除緩存資源 imagedestroy($bg); } public function checkKeys($input){ if(count($input)!=$this->count){ return 'ERROR:長度不正確.'; }else{ for($i=0;$i < $this->count;$i++){ //0 o O I l 1 校準,根據所選擇的字體確定是否需要手動校準 if($input[$i] != $this->keys[$i]['char']){ return 'SUCCESS.'; }else{ return 'ERROR:請輸入正確驗證碼.'; } } } } } ?>
到此這篇關於php實現自動生成驗證碼的實例講解的文章就介紹到這瞭,更多相關php實現自動生成驗證碼的方法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- php結合GD庫實現中文驗證碼的簡單方法
- php png失真的原因及解決辦法
- Python深度學習albumentations數據增強庫
- Python戀愛小助手之必拿下
- python實現圖片九宮格分割的示例