当前位置:首页 > PHP教程 > php图像处理 > 列表

PHP实现GIF图片验证码

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-25 10:19:09 浏览: 评论:0 

这篇文章主要介绍了PHP如何生成GIF动态图片验证码,在注册界面时大家经常用到验证码,需要了解的朋友可以参考下。

这是一个用PHP生成GIF动画来实现动态图片验证码的程序,非常实用,是php用户注册登录界面经常需要用到的验证码程序,有需要GIF动态图片验证码功能的朋友可以收藏一下。

第一步:创建ImageCode.php文件,验证码生成函数代码如下:

  1. <?php 
  2. /** 
  3.  * ImageCode 生成GIF图片验证 
  4.  * @param $string 字符串 
  5.  * @param $width 宽度 
  6.  * @param $height 高度 
  7.  * */ 
  8. function ImageCode($string = ''$width = 75, $height = 25) 
  9.   $authstr = $string ? $string : ((time() % 2 == 0) ? mt_rand(1000, 9999) : mt_rand(10000, 99999)); 
  10.   $board_width = $width
  11.   $board_height = $height
  12.   // 生成一个32帧的GIF动画 
  13.   for($i = 0; $i < 32; $i++) 
  14.   { 
  15.     ob_start(); 
  16.     $image = imagecreate($board_width$board_height); 
  17.     imagecolorallocate($image, 0,0,0); 
  18.     // 设定文字颜色数组 
  19.     $colorList[] = ImageColorAllocate($image, 15,73,210); 
  20.     $colorList[] = ImageColorAllocate($image, 0,64,0); 
  21.     $colorList[] = ImageColorAllocate($image, 0,0,64); 
  22.     $colorList[] = ImageColorAllocate($image, 0,128,128); 
  23.     $colorList[] = ImageColorAllocate($image, 27,52,47); 
  24.     $colorList[] = ImageColorAllocate($image, 51,0,102); 
  25.     $colorList[] = ImageColorAllocate($image, 0,0,145); 
  26.     $colorList[] = ImageColorAllocate($image, 0,0,113); 
  27.     $colorList[] = ImageColorAllocate($image, 0,51,51); 
  28.     $colorList[] = ImageColorAllocate($image, 158,180,35); 
  29.     $colorList[] = ImageColorAllocate($image, 59,59,59); 
  30.     $colorList[] = ImageColorAllocate($image, 0,0,0); 
  31.     $colorList[] = ImageColorAllocate($image, 1,128,180); 
  32.     $colorList[] = ImageColorAllocate($image, 0,153,51); 
  33.     $colorList[] = ImageColorAllocate($image, 60,131,1); 
  34.     $colorList[] = ImageColorAllocate($image, 0,0,0); 
  35.     $fontcolor = ImageColorAllocate($image, 0,0,0); 
  36.     $gray = ImageColorAllocate($image, 245,245,245);     
  37.     $color = imagecolorallocate($image, 255,255,255); 
  38.     $color2 = imagecolorallocate($image, 255,0,0); 
  39.     imagefill($image, 0, 0, $gray); 
  40.     $space = 15;    // 字符间距 
  41.     if($i > 0)      // 屏蔽第一帧 
  42.     { 
  43.       for ($k = 0; $k < strlen($authstr); $k++) 
  44.       { 
  45.         $colorRandom = mt_rand(0,sizeof($colorList)-1); 
  46.         $float_top = rand(0,4); 
  47.         $float_left = rand(0,3); 
  48.         imagestring($image, 6, $space * $k$top + $float_topsubstr($authstr$k, 1), $colorList[$colorRandom]); 
  49.       } 
  50.     } 
  51.  
  52.     for ($k = 0; $k < 20; $k++) 
  53.     { 
  54.       $colorRandom = mt_rand(0,sizeof($colorList)-1); 
  55.       imagesetpixel($image, rand()%70 , rand()%15 , $colorList[$colorRandom]);   
  56.     } 
  57.     // 添加干扰线 
  58.     for($k = 0; $k < 3; $k++) 
  59.     { 
  60.       $colorRandom = mt_rand(0, sizeof($colorList)-1); 
  61.       // $todrawline = rand(0,1); 
  62.       $todrawline = 1; 
  63.       if($todrawline
  64.       { 
  65.         imageline($image, mt_rand(0, $board_width), mt_rand(0,$board_height), mt_rand(0,$board_width), mt_rand(0,$board_height), $colorList[$colorRandom]); 
  66.       } 
  67.       else 
  68.       { 
  69.         $w = mt_rand(0,$board_width); 
  70.         $h = mt_rand(0,$board_width); 
  71.         imagearc($image$board_width - floor($w / 2) , floor($h / 2), $w$h, rand(90,180), rand(180,270), $colorList[$colorRandom]); 
  72.       } 
  73.     } 
  74.     imagegif($image); 
  75.     imagedestroy($image); 
  76.     $imagedata[] = ob_get_contents(); 
  77.     ob_clean();  
  78.     ++$i;  
  79.   }   
  80.   $gif = new GIFEncoder($imagedata);  
  81.   Header ('Content-type:image/gif');  
  82.   echo $gif->GetAnimation();  
  83. /** 
  84.  * GIFEncoder类 
  85.  * */ 
  86. Class GIFEncoder 
  87.   var $GIF = "GIF89a";        /* GIF header 6 bytes    */ 
  88.   var $VER = "GIFEncoder V2.06";    /* Encoder version       */ 
  89.   var $BUF = Array ( );  
  90.   var $LOP = 0;  
  91.   var $DIS = 2;  
  92.   var $COL = -1;  
  93.   var $IMG = -1;  
  94.   var $ERR = Array (  
  95.     'ERR00' =>"Does not supported function for only one image!",  
  96.     'ERR01' =>"Source is not a GIF image!",  
  97.     'ERR02' =>"Unintelligible flag ",  
  98.     'ERR03' =>"Could not make animation from animated GIF source",  
  99.   );  
  100.   function GIFEncoder ($GIF_src$GIF_dly = 100, $GIF_lop = 0, $GIF_dis = 0, $GIF_red = 0, $GIF_grn = 0, $GIF_blu = 0, $GIF_mod = 'bin' ) 
  101.   {  
  102.     if (!is_array($GIF_src) && !is_array($GIF_tim)) 
  103.     {  
  104.       printf ( "%s: %s"$this->VER, $this->ERR['ERR00']);  
  105.       exit( 0 ); 
  106.     }  
  107.     $this->LOP = ($GIF_lop > -1) ? $GIF_lop : 0; 
  108.     $this->DIS = ($GIF_dis > -1) ? (( $GIF_dis < 3 ) ? $GIF_dis : 3) : 2;  
  109.  
  110.     $this->COL = ($GIF_red > -1 && $GIF_grn > -1 && $GIF_blu > -1) ? ($GIF_red | ($GIF_grn << 8) | ($GIF_blu << 16)) : -1;  
  111.     for ($i = 0, $src_count = count($GIF_src); $i < $src_count$i++ ) 
  112.  
  113.     { 
  114.       if (strToLower$GIF_mod ) == "url"
  115.       {  
  116.         $this->BUF[] = fread (fopen($GIF_src [$i], "rb"), filesize ($GIF_src [$i]));  
  117.       }  
  118.       elseif(strToLower($GIF_mod) == "bin"
  119.       {  
  120.  
  121.         $this->BUF [ ] = $GIF_src [ $i ];  
  122.       }  
  123.       else 
  124.       {  
  125.         printf("%s: %s ( %s )!"$this->VER, $this->ERR [ 'ERR02' ], $GIF_mod);  
  126.  
  127.         exit(0);  
  128.       }  
  129.       if (substr($this->BUF[$i], 0, 6) != "GIF87a" && substr($this->BUF [$i], 0, 6) != "GIF89a"
  130.  
  131.       {  
  132.  
  133.         printf( "%s: %d %s"$this->VER, $i$this->ERR ['ERR01']);  
  134.  
  135.         exit(0);  
  136.       }  
  137.       for ($j = (13 + 3 * (2 << (ord($this->BUF[$i]{10}) & 0x07 ))), $k = TRUE; $k$j++) 
  138.       {  
  139.         switch ($this->BUF [$i]{$j}) 
  140.         {  
  141.           case "!":  
  142.             if ((substr($this->BUF[$i], ($j + 3), 8)) == "NETSCAPE"
  143.             {  
  144.                 printf( "%s: %s ( %s source )!"$this->VER, $this->ERR ['ERR03'], ($i + 1));  
  145.                 exit( 0 );  
  146.             }  
  147.             break;  
  148.             case ";":  
  149.             $k = FALSE;  
  150.             break;  
  151.         }  
  152.       }  
  153.     }  
  154.     GIFEncoder::GIFAddHeader();  
  155.     for($i = 0, $count_buf = count($this->BUF); $i < $count_buf$i++) 
  156.     {  
  157.       GIFEncoder::GIFAddFrames($i$GIF_dly[$i]);  
  158.     }  
  159.     GIFEncoder::GIFAddFooter();  
  160.   }  
  161.   function GIFAddHeader ( ) 
  162.   {  
  163.     $cmap = 0;  
  164.     if (ord($this->BUF[0]{10}) & 0x80 ) 
  165.     {  
  166.       $cmap = 3 * ( 2 << ( ord ( $this->BUF [ 0 ]{10} ) & 0x07 ));  
  167.          
  168.       $this->GIF .= substr ( $this->BUF [ 0 ], 6, 7);  
  169.  
  170.       $this->GIF .= substr ( $this->BUF [ 0 ], 13, $cmap);  
  171.       $this->GIF .= "!\377\13NETSCAPE2.0\3\1" . GIFEncoder::GIFWord ( $this->LOP ) . "\0";  
  172.     }  
  173.   }  
  174.   function GIFAddFrames ( $i$d ) 
  175.   {  
  176.     $Locals_str = 13 + 3 * (2 <<(ord($this->BUF[$i]{10}) & 0x07));  
  177.     $Locals_end = strlen($this->BUF[$i]) - $Locals_str - 1;  
  178.     $Locals_tmp = substr ($this->BUF[$i], $Locals_str$Locals_end);  
  179.     $Global_len = 2 << (ord( $this->BUF [0]{10} ) & 0x07 );  
  180.     $Locals_len = 2 << (ord( $this->BUF[$i]{10}) & 0x07);  
  181.     $Global_rgb = substr($this->BUF[0], 13, 3 * (2 << ( ord ( $this->BUF[0]{10} ) & 0x07)));  
  182.     $Locals_rgb = substr ( $this->BUF[$i], 13, 3 * (2 << ( ord ( $this->BUF[$i]{10} ) & 0x07)));  
  183.     $Locals_ext = "!\xF9\x04" . chr(($this->DIS << 2) + 0) . chr(($d >> 0) & 0xFF) . chr(($d >> 8) & 0xFF) . "\x0\x0";  
  184.     if ( $this->COL > -1 && ord($this->BUF[$i]{10}) & 0x80) 
  185.  
  186.     {  
  187.       for($j = 0; $j < (2 << (ord( $this->BUF[$i]{10}) & 0x07)); $j++ ) 
  188.       {  
  189.         if(ord ($Locals_rgb{3 * $j + 0}) == ($this->COL >> 0) & 0xFF && ord ( $Locals_rgb { 3 * $j + 1 } ) == ( $this->COL >> 8 ) & 0xFF && ord ( $Locals_rgb { 3 * $j + 2 } ) == ( $this->COL >> 16 ) & 0xFF ) 
  190.  
  191.         {  
  192.           $Locals_ext = "!\xF9\x04" . chr(($this->DIS << 2) + 1) . chr (( $d >> 0) & 0xFF) . chr (( $d >> 8) & 0xFF) . chr ($j) . "\x0";  
  193.           break;  
  194.         }  
  195.       }  
  196.  
  197.     }  
  198.     switch ( $Locals_tmp { 0 } ) 
  199.  
  200.     {  
  201.       case "!":  
  202.         $Locals_img = substr($Locals_tmp, 8, 10);  
  203.         $Locals_tmp = substr($Locals_tmp, 18, strlen ($Locals_tmp) - 18);  
  204.         break;  
  205.       case ",":  
  206.         $Locals_img = substr($Locals_tmp, 0, 10);  
  207.         $Locals_tmp = substr($Locals_tmp, 10, strlen($Locals_tmp) - 10);  
  208.         break;  
  209.     }  
  210.     if ( ord ( $this->BUF[$i]{10} ) & 0x80 && $this->IMG > -1 ) 
  211.     {  
  212.       if ( $Global_len == $Locals_len ) 
  213.       {  
  214.         if ( GIFEncoder::GIFBlockCompare ( $Global_rgb$Locals_rgb$Global_len ) ) 
  215.         {  
  216.           $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );  
  217.         }  
  218.         else 
  219.         {  
  220.           $byte = ord ( $Locals_img{9});  
  221.           $byte |= 0x80;  
  222.           $byte &= 0xF8;  
  223.           $byte |= ( ord ( $this->BUF [ 0 ]{10}) & 0x07);  
  224.  
  225.           $Locals_img{9} = chr($byte);  
  226.  
  227.           $this->GIF .= ($Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp);  
  228.         }  
  229.       }  
  230.       else 
  231.  
  232.       {  
  233.         $byte = ord($Locals_img{9});  
  234.         $byte |= 0x80;  
  235.         $byte &= 0xF8;  
  236.         $byte |= (ord($this->BUF[$i]{10}) & 0x07);  
  237.         $Locals_img {9} = chr($byte);  
  238.         $this->GIF .= ($Locals_ext . $Locals_img . $Locals_rgb . $Locals_tmp);  
  239.       }  
  240.     }  
  241.     else 
  242.     {  
  243.       $this->GIF .= ( $Locals_ext . $Locals_img . $Locals_tmp );  
  244.     }  
  245.     $this->IMG = 1;  
  246.  
  247.   }  
  248.   function GIFAddFooter ( ) {  
  249.     $this->GIF .= ";";  
  250.   }  
  251.   function GIFBlockCompare ( $GlobalBlock$LocalBlock$Len ) 
  252.   {  
  253.     for ( $i = 0; $i < $Len$i++ ) 
  254.  
  255.     {  
  256.  
  257.       if($GlobalBlock { 3 * $i + 0 } != $LocalBlock { 3 * $i + 0 } || $GlobalBlock { 3 * $i + 1 } != $LocalBlock { 3 * $i + 1 } || $GlobalBlock { 3 * $i + 2 } != $LocalBlock{3 * $i + 2}) 
  258.       {  
  259.         return ( 0 );  
  260.       }  
  261.     }  
  262.  
  263.     return ( 1 );  
  264.   }  
  265.   function GIFWord ( $int ) 
  266.   {  
  267.     return ( chr ( $int & 0xFF ) . chr ( ( $int >> 8 ) & 0xFF ) );  
  268.   }  
  269.      
  270.   function GetAnimation ( ) 
  271.   {  
  272.     return ($this->GIF);  
  273.   }  

第二步:验证码生成,创建yzimg.php,并引用入文件ImageCode.php,代码如下:

  1. <?php 
  2. if(!isset($_SESSION)){ 
  3.   session_start(); 
  4. require_once(dirname(__FILE__)."ImageCode.php"); 
  5. unset($_SESSION['yzm']); 
  6. $randCode = ''
  7. $chars = 'abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPRSTUVWXYZ23456789'
  8. for ( $i = 0; $i < 4; $i++ ) 
  9.   $randCode .= substr($chars, mt_rand(0, strlen($chars) - 1), 1); 
  10. $_SESSION['yzm']=$randCode;     // 记录session 
  11. ImageCode($randCode, 60); 
  12.    
  13. /*方法二*/ 
  14. /*$authstr = mt_rand(1000, 9999);  // 生成随机字符串 
  15. $_SESSION['yzm'] = $authstr;  // 记录session 
  16. ImageCode($authstr, 60);  // 显示GIF动画*/ 
  17. ?> 

第三步:调用和显示验证码,在需要添加验证码的页面加入以下代码,代码如下:

  1. <input name="yzm" type="text" class="input1" size="12" style="width:70px;"/> 
  2.          <SCRIPT LANGUAGE="JavaScript"
  3. <!-- 
  4. document.write('<img id="yz_Img" name="imageField" class="yz_Img" title="刷新验证码" onclick="this.src=this.src+Math.random();" src="yzimg.php?'+Math.random()+'">'); 
  5. //--> 
  6. </SCRIPT> 

以上就是为大家分享的如何使用php生成动态验证码的相应代码,希望对大家的学习有所帮助。

Tags: GIF图片验证码

分享到: