PHP验证码类源代码(字母带干扰点)

2011-09-28 20:09:19来源:itwhy作者:

这是一个PHP验证码类,支持干扰码、干扰线和倾斜。

这是一个PHP验证码类,支持干扰码、干扰线和倾斜。

PHP验证码类生成的样式图片:

其实PHP生成验证码没有想象中的难,我自己写了一个类,记住备忘。以下是这个类可以生成的样式啦!

验证码样式1 验证码样式2 验证码样式3 验证码样式4

验证码样式5 验证码样式6 验证码样式7 验证码样式8

PHP 验证码类代码:

PHP Code复制内容到剪贴板
  1. <?php   
  2. /**  
  3.  * PHP 验证码,支持干扰点、干扰线、倾斜。  
  4.  * 日期:2011-09-23  
  5.  * 作者:www.itwhy.org  
  6.  * 使用:  
  7.  *      $obj = new class_authcode();        //实例化对象,并设置验证码图片的宽、高和验证码的长度。  
  8.  *      $obj->$authcode;                    //获取验证码。  
  9.  *      $obj->output();                     //输出验证码图片。  
  10.  */  
  11. class class_authcode{   
  12.     public  $authcode   = '';                           //验证码   
  13.   
  14.     private $width      = '';                           //验证码图片宽   
  15.     private $height     = '';                           //验证码图片高   
  16.     private $len        = '';                           //验证码长度   
  17.     private $tilt       = array(-30,30);                //验证码倾斜角度   
  18.     private $font       = 'AlteHaasGroteskBold.ttf';    //字体文件   
  19.     private $str        = '';                           //验证码基   
  20.     private $im         = '';                           //生成图片的句柄   
  21.   
  22.     //构造函数,生成验证码。   
  23.     function __construct($width=100,$heigh=30,$len=4) {   
  24.         $this->width    = $width;   
  25.         $this->height   = $heigh;   
  26.         $this->len      = $len;   
  27.         $this->str      = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';   
  28.   
  29.         $str_len = strlen($this->str)-1;   
  30.         for ($i=0; $i<$len$i++) {   
  31.             $this->authcode .= $this->str[rand(0,$str_len)];   
  32.         }   
  33.     }   
  34.     //创建图片   
  35.     private function imagecreate(){   
  36.         $this->im = imagecreatetruecolor($this->width,$this->height);   
  37.     }   
  38.     //干扰颜色   
  39.     private function ext_color() {   
  40.         return imagecolorallocate($this->im,rand(50, 180),rand(50, 180),rand(50, 180));   
  41.     }   
  42.     //创建干扰点   
  43.     private function ext_point() {   
  44.         for ($i=0; $i<$this->width*2; $i++) {   
  45.             imagesetpixel($this->im,rand(1,$this->width-1),rand(1,$this->height-1),$this->ext_color());   
  46.         }   
  47.     }   
  48.     //创建干扰线   
  49.     private function ext_line() {   
  50.         for ($i=0; $i<$this->len; $i++) {   
  51.             $x1 = rand(1,$this->width-1);   
  52.             $y1 = rand(1,$this->height-1);   
  53.             $x2 = rand(1,$this->width-1);   
  54.             $y2 = rand(1,$this->height-1);   
  55.             imageline($this->im,$x1,$y1,$x2,$y2,$this->ext_color());   
  56.         }   
  57.     }   
  58.     //把验证码写入图片(不能和$this->imgstrfloat()同时使用)   
  59.     private function imgstr() {   
  60.         $old_x = 1;   
  61.         for ($i=0; $i<$this->len; $i++) {   
  62.             $fontsize = rand(2,5);      //字体大小   
  63.             $tmp_1 = $fontsize*2.5;   
  64.             $tmp_2 = $i>0 ? $tmp_1 : 0;   
  65.             $y = rand(1,$this->height/2);   
  66.             $x = rand($old_x+$tmp_2, ($i+1)*($this->width)/$this->len-$tmp_1);   
  67.             $old_x = $x;   
  68.             $color = imagecolorallocate($this->im,rand(200, 255),rand(200, 255),rand(200, 255));   
  69.             imagestring($this->im,$fontsize,$x,$y,$this->authcode[$i],$color);   
  70.         }   
  71.     }   
  72.     //把验证码倾斜写入图片(不能和$this->imgstr()同时使用)   
  73.     private function imgstrfloat() {   
  74.         $old_x = 1;   
  75.         for ($i=0; $i<$this->len; $i++) {   
  76.             $fontfloat = rand($this->tilt[0],$this->tilt[1]);   
  77.             $fontsize = rand(10,15);        //字体大小   
  78.             $tmp_1 = $i>0 ? $fontsize : 0;   
  79.             $y = rand($fontsize+2, $this->height-2);   
  80.             $x = rand($old_x+$tmp_1+2, ($i+1)*($this->width)/$this->len-$fontsize-2);   
  81.             $old_x = $x;   
  82.             $color = imagecolorallocate($this->im, rand(200, 255), rand(200, 255), rand(200, 255));   
  83.             imagettftext($this->im, $fontsize$fontfloat$x$y$color$this->font, $this->authcode[$i]);   
  84.         }   
  85.     }   
  86.     //输出图片   
  87.     function output() {   
  88.         $this->imagecreate();   
  89.         $this->imgstr();   
  90.         //$this->imgstrfloat();   
  91.         $this->ext_point();   
  92.         $this->ext_line();   
  93.         header('content-type:image/png');   
  94.         imagepng($this->im);   
  95.         imagedestroy($this->im);   
  96.     }   
  97. }   
  98. ?>  

原文:http://www.itwhy.org/2011/09-23/1247.html
 

赞助商链接: