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

php 生成验证码程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-20 09:52:52 浏览: 评论:0 
  1. <?php 
  2. $consts = 'bcdfghjkmnpqrstwxyz'
  3.  $vowels = 'aei23456789'
  4.  for ($x = 0; $x < 6; $x++) 
  5.  { 
  6.   $const[$x] = substr($consts, mt_rand(0,strlen($consts)-1),1); 
  7.   $vow[$x] = substr($vowels, mt_rand(0,strlen($vowels)-1),1); 
  8.  } 
  9.  $radomstring = $const[0] . $vow[0] .$const[2] . $const[1] . $vow[1] . $const[3] . $vow[3] . $const[4]; 
  10.  $_SESSION['checkcode'] = $string = substr($radomstring,0,4); //only display 4 str 
  11.  / t up image, the first number is the width and the second is the height 
  12.  $imageX = strlen($radomstring)*5.5; //the image width 
  13.  $imageY = 20;      //the image height 
  14.  $im = imagecreatetruecolor($imageX,$imageY); 
  15.  
  16.  //creates two variables to store color 
  17.  $background = imagecolorallocate($im, rand(180, 250), rand(180, 250), rand(180, 250)); 
  18.  $foregroundArr = array(imagecolorallocate($im, rand(0, 20), rand(0, 20), rand(0, 20)), 
  19.          imagecolorallocate($im, rand(0, 20), rand(0, 10), rand(245, 255)), 
  20.          imagecolorallocate($im, rand(245, 255), rand(0, 20), rand(0, 10)), 
  21.          imagecolorallocate($im, rand(245, 255), rand(0, 20), rand(245, 255))); 
  22.  $foreground2 = imagecolorallocatealpha($im, rand(20, 100), rand(20, 100), rand(20, 100),80);   
  23.  $middleground = imagecolorallocate($im, rand(200, 160), rand(200, 160), rand(200, 160)); 
  24.  $middleground2 = imagecolorallocatealpha($im, rand(180, 140), rand(180, 140), rand(180, 140),80); 
  25.  
  26.  //fill image with bgcolor 
  27.  imagefill($im, 0, 0, imagecolorallocate($im, 250, 253, 254)); 
  28.  //writes string 
  29.  imagestring($im, 5, 3, floor(rand(0,5))-1, $string[0], $foregroundArr[rand(0,3)]); 
  30.  imagestring($im, 5, 13, floor(rand(0,5))-1, $string[1], $foregroundArr[rand(0,3)]); 
  31.  imagestring($im, 5, 23, floor(rand(0,5))-1, $string[2], $foregroundArr[rand(0,3)]); 
  32.  imagestring($im, 5, 33, floor(rand(0,5))-1, $string[3], $foregroundArr[rand(0,3)]); 
  33.  for($i=0; $i<strlen($string); $i++) 
  34.  { 
  35.   if(mt_rand(0,ord(substr($string,$i,1)))%2 == 0) 
  36.   { 
  37.    $string{$i} = ' '
  38.   } 
  39.  } 
  40.  imagestring($im, 2, 2, 0, $string$foreground2); 
  41.  //strikethrough 
  42.  
  43.  $border = imagecolorallocate($im, 133, 153, 193); 
  44.  //imagefilledrectangle($aimg, 0, 0, $x_size - 1, $y_size - 1, $back); 
  45.  imagerectangle($im, 0, 0, $imageX - 1, $imageY - 1, $border); 
  46.  
  47.  $pointcol = imagecolorallocate($im, rand(0,255), rand(0,255), rand(0,255)); 
  48.  for ($i=0;$i<20;$i++) 
  49.  { 
  50.   imagesetpixel($im,rand(2,$imageX-2),rand(2,$imageX-2),$pointcol); 
  51.  } 
  52.  //rotate 
  53.  
  54.  $middleground = imagecolorallocatealpha($im, rand(160, 200), rand(160, 200), rand(160, 200), 80); 
  55.  //random shapes 
  56.  for ($x=0; $x<15;$x++) 
  57.  { 
  58.   if(mt_rand(0,$x)%2==0) 
  59.   { 
  60.    imageline($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), $middleground); 
  61.    imageellipse($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), $middleground2); 
  62.   } 
  63.   else 
  64.   { 
  65.    imageline($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), $middleground2); 
  66.    imageellipse($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), $middleground); 
  67.   } 
  68.  }//开源代码phpfensi.com 
  69.  //output to browser 
  70.     header("content-type:image/png\r\n"); 
  71.  imagepng($im); 
  72.  imagedestroy($im); 
  73. ?> 

Tags: php生成验证码 php验证码程序

分享到: