1. 程式人生 > 程式設計 >php實現自動生成驗證碼的例項講解

php實現自動生成驗證碼的例項講解

現在驗證碼在表單中的應用越來越多了,但是如果用來實現總覺得不太方便,因此使用來實現下,在此記錄下。

當然,我們也可以封裝成一個函式,以後使用的時候也是很方便的,這裡並未封裝,感興趣的小夥伴可以自己封裝下。

具體實現程式碼:

新建一個cap_sz.php檔案:

<?php
session_start(); //設定session,一定要在頂部
$width = 150; //設定圖片寬為300畫素
$height = 40; //設定圖片高為40畫素
$image = imagecreatetruecolor($width,$height); //設定驗證碼大小的函式
$bgcolor = imagecolorallocate($image,255,255); //驗證碼顏色RGB為(255,255)#ffffff
imagefill($image,$bgcolor); //區域填充
$cap_code = "";
for($i=0;$i<4;$i++){
    $fontsize = 7; //設定字型大小
    $fontcolor = imagecolorallocate($image,rand(0,120),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));
    //設定顏色,20-200顏色比數字淺,不干擾閱讀
    imagesetpixel($image,rand(1,149),39),$inputcolor);
    //畫一個單一畫素的元素
}
//增加干擾元素,設定橫線(先設定線的顏色,在設定橫線)
for ($i=0;$i<4;$i++) {
    $linecolor = imagecolorallocate($image,220),220));
    //設定線的顏色
    imageline($image,299),$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;
    $thhttp://www.cppcns.com
is->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空白,上下3http://www.cppcns.com
px $grey = imagecolorallocate($bg,155,155); $blue = imagecolorallocate($bg,0x00,0xff); //填充背景 imagefill($bg,$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,255),255)); $x = 8 + $pwidth*$i + $pwidth/2 - $width_txt/2;//x座標基本位置 $y = $this->height/2 - $height_txt/2; imagettftext($bg,$f客棧ontsize,$fontcolor,$this->keys[$i]['char']); } //繪製干擾線 //根據字型酌情增加干擾線 imageline($bg,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:請輸入正確驗證碼.'; } } http://www.cppcns.com } } } ?>

到此這篇關於php實現自動生成驗證碼的例項講解的文章就介紹到這了,更多相關php實現自動生成驗證碼的方法內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!