PHP的中问验证码

   2015-11-20 0
复制代码 代码如下:

<?php
Class code
{
 var $width =160; //图片的宽
 var $hight =40; //图片的高
 var $image;
 var $red =223; //图片的RGB颜色
 var $green =225; //红
 var $blue =227 ;//绿
 var $pix =227 ;//蓝
 var $pixcolor; //杂色颜色;
 var $pixred = 242; //红
 var $pixgreen = 168;//绿
 var $pixblue = 162; //蓝
 var $txt=null;//验证码文字
 var $txtcode=null;
 var $txtsub=null;
 var $pixnum = 300; //杂点数量
 var $i=0;
 var $widthpx=0;
 var $highty=0;
 var $txtreg=50;
 var $txtgreen=30;
 function createimage()  //创建一张图并填色
 {
  $this->image = imagecreate($this->width,$this->hight);
  $this->color = imagecolorallocate($this->image,$this->red,$this->green,$this->blue);
  return imagefill($this->image,0,0,$this->color);
 }
 function createpix() //干扰因素
 {
  for($this->i=1;$this->i<$this->pixnum;$this->i++)
  {
    $this->widthpx = rand(0,$this->width);
    $this->highty = rand(0,$this->hight);
   $this->pixcolor = imagecolorallocate($this->image,$this->pixred,$this->pixgreen,$this->pixblue);
     imagesetpixel($this->image,$this->widthpx,$this->highty,$this->pixcolor);
  }
 }
  function gettxt() //创建验证码文字
 {
  $this->txt = array("我","爱","你","叶","就","慧","明","发","真","的","很","想","不","知","到","为","什","么","就","是","忘","不","了","你","也","许","上","辈","欠","钱");
  for($this->i=0;$this->i<6;$this->i++)
  {
   $this->sub = $this->txt[rand(0,29)];
   $this->txtcode.= $this->sub;
  }
  $this->txtcode = iconv("GB2312","UTF-8",$this->txtcode);
  $_SESSION["code"] = $this->txtcode; //产生的验证ID
 }
 function createstring() //创建验证码图片
 {
  imagettftext($this->image,20,5,0,40,$this->pixcolor,"C:\WINDOWS\Fonts\simsun.ttc ",$this->txtcode);
  header("content-type:image/png");
  return imagepng($this->image);
     imagedestroy($this->image);
 }
 function getcodeimage()//获得验证码图片
 {
  $this->createimage();
  $this->gettxt();
  $this->createpix();  
  $this->createstring();
 }
}
?>
<?php 
session_start();   
$text = new code;
$text->createimage();
$text->gettxt();
$text->createpix();
$text->createstring();
?>

 
反对 0举报 0 评论 0
 

免责声明:本文仅代表作者个人观点,与乐学笔记(本网)无关。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
    本网站有部分内容均转载自其它媒体,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责,若因作品内容、知识产权、版权和其他问题,请及时提供相关证明等材料并与我们留言联系,本网站将在规定时间内给予删除等相关处理.

点击排行