程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP生成制作驗證碼,php生成驗證碼

PHP生成制作驗證碼,php生成驗證碼

編輯:關於PHP編程

PHP生成制作驗證碼,php生成驗證碼


看完就會,不會你打我,話不多說、開搞(人狠話不多)

1.0  首先先看代碼

 1 <?php
 2 header("Content-Type:text/html;Charset=UTF-8");// 設置頁面的編碼風格
 3 header("Content-Type:image/jpeg");// 通知浏覽器輸出的是jpeg格式的圖像
 4 
 5 $img = imagecreatetruecolor(150,50);//創建畫布並設置大小  x軸150  y軸50
 6 
 7 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景顏色
 8 imagefill($img, 0, 0, $bgcolor); ////把背景填充到圖像
 9 imagejpeg($img);             // 輸出圖像
10 imagedestroy($img);          // 銷毀圖像
11 ?>

 

 好,現在結合以上代碼,來分析分析以上用到的幾個函數:

①  imagecreatetruecolor(); 

imagecreatetruecolor — 新建一個真彩色圖像(感覺哇,那麼長,其實仔細一看挺好記的 image/create/true/color,什麼是真彩色圖像?往下看)

1 resource imagecreatetruecolor ( int $width , int $height )

imagecreatetruecolor() 和 imagecreate()兩個函數都能創建畫布

1 resource imagecreate ( int $x_size , int $y_size )

 

imagecreatetruecolor()建立的是一幅大小為 x和 y的黑色圖像(默認為黑色[即便叫法就是真彩色圖像]),如想改變背景顏色則需要用填充顏色函數 imagefill($img,0,0,$color);

imagecreate 新建一個空白圖像資源,用imagecolorAllocate()添加背景色

上面兩個函數只不過是一個功能的兩種方法

 

②  imagecolorallocate();

imagecolorallocate — 為一幅圖像分配顏色

1 int imagecolorallocate ( resource $image , int $red , int $green , int $blue )

顏色分別用 紅 綠 藍三色組合,這些參數是 0 到 255 的整數或者十六進制的 0x00 到 0xFF。

 

③  mt_rand();

mt_rand — 生成更好的隨機數

1 int mt_rand ( int $min , int $max )

$min 可選的、返回的最小值(默認:0)  $max 可選的、返回的最大值(默認:mt_getrandmax()) 

這裡就是用來讓他隨機生成背景顏色,0-255隨便取值。所以頁面沒刷新一次畫布背景顏色就不一樣。
效果圖:

 

2.0  開始往裡面做干擾線,干擾點。防止驗證圖像被秒識別

 1 <?php
 2 header("Content-Type:text/html;Charset=UTF-8");// 設置頁面的編碼風格
 3 header("Content-Type:image/jpeg");// 通知浏覽器輸出的是jpeg格式的圖像
 4 
 5 $img = imagecreatetruecolor(150,50);//創建畫布並設置大小  x軸150  y軸50
 6 
 7 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景顏色
 8 
 9 //添加干擾線,並循環3次,背景顏色隨機
10 for($i=0;$i<3;$i++){
11 
12     $linecolor = imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
13     imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor);
14 
15 }
16 //添加干擾點,並循環25次,背景顏色隨機
17 for($i=0;$i<25;$i++){
18 
19     $dotcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));
20     imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor);
21 
22 }
23 
24 imagefill($img, 0, 0, $bgcolor); ////把背景填充到圖像
25 imagejpeg($img);             // 輸出圖像
26 imagedestroy($img);          // 銷毀圖像
27 ?>

 

 函數分析:

①  imageline();

 imageline — 畫一條線段

1 bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )

 

 imageline() 用 color 顏色在圖像 image 中從坐標 x1y1x2y2(圖像左上角為 0, 0)畫一條線段。 

imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor);

這裡意思就是 畫布$img 中從坐標 x1y1 到 x2y2隨機


②  imagesetpixel();

imagesetpixel— 畫一個單一像素

 

1 bool imagesetpixel ( resource $image , int $x , int $y , int $color )

imagesetpixel() 在 image 圖像中用 color 顏色在 xy 坐標(圖像左上角為 0,0)上畫一個點。 

 

imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor);
具體含義同上

 效果圖:

3.0  添加驗證字母數字

 

 1 <?php
 2 header("Content-Type:text/html;Charset=UTF-8");// 設置頁面的編碼風格
 3 header("Content-Type:image/jpeg");// 通知浏覽器輸出的是jpeg格式的圖像
 4 
 5 $img = imagecreatetruecolor(150,50);//創建畫布並設置大小  x軸150  y軸50
 6 
 7 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景顏色
 8 
 9 //添加干擾線,並循環3次,背景顏色隨機
10 for($i=0;$i<3;$i++){
11 
12     $linecolor = imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
13     imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor);
14 
15 }
16 //添加干擾點,並循環25次,背景顏色隨機
17 for($i=0;$i<25;$i++){
18 
19     $dotcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));
20     imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor);
21 
22 }
23 
24 //添加需要驗證的字母或者數字
25 $rand_str = "qwertyuiopasdfghjklzxcvbnm1234567890";//需要使用到驗證的一些字母和數字
26 $str_arr = array();    //命名一個數組
27 for($i = 0;$i<4;$i++){    //循環4次,就是有四個隨機的字母或者數字                            
28     $pos = mt_rand(0,strlen($rand_str)-1);
29     $str_arr[] = $rand_str[$pos];//臨時交換
30 }
31 
32 $x_start=150/4;//單個字符X軸位置
33 
34 foreach ($str_arr as $key) {
35     $fontcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));
36     imagettftext($img, 25, mt_rand(-15,15), $x_start, 50/2, $fontcolor, "C:/Windows/Fonts/Verdana.TTF", $key);
37     $x_start +=20;//遍歷後單個字符沿X軸 +20
38 }
39 
40 imagefill($img, 0, 0, $bgcolor); ////把背景填充到圖像
41 imagejpeg($img);             // 輸出圖像
42 imagedestroy($img);          // 銷毀圖像
43 ?>

 

 函數:

 imagettftext();

imagettftext — 用 TrueType 字體向圖像寫入文本

1 array imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )

 

 分析下面的代碼:

imagettftext($img, 25, mt_rand(-15,15), $x_start, 50/2, $fontcolor, "C:/Windows/Fonts/Verdana.TTF", $key);

 

$img-----------畫布

25-----------字體的尺寸。

mt_rand(-15,15)----------角度制表示的角度,0 度為從左向右讀的文本。更高數值表示逆時針旋轉。例如 90 度表示從下向上讀的文本。(就是字體角度的問題,)

$x_start----------通俗易懂的講就是字符的X軸位置

50/2----------字符的高度

$fontcolor----------字符顏色

"C:/Windows/Fonts/Verdana.TTF"----------字符的字體樣式路徑

$key-----------遍歷出後的字符

 

效果:

看起來還是挺可愛的。

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved