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

php生成图片验证码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-25 13:38:43 浏览: 评论:0 

首先,有一个在php.ini看看gd库是不是开启的,下一步,我们会考虑每一个细节的图像生成步骤.

php生成图片验证码实例代码如下:

  1. <?php  
  2. //Send a generated image to the browser  
  3. create_image();  
  4. exit(); 
  5.  
  6. function create_image()  
  7. {  
  8.     //Let's generate a totally random string using md5  
  9.     $md5 = md5(rand(0,999));  
  10.     //We don't need a 32 character long string so we trim it down to 5  
  11.     $pass = substr($md5, 10, 5); 
  12.  
  13.     //Set the image width and height  
  14.     $width = 100;  
  15.     $height = 20;  
  16.  
  17.     //Create the image resource  
  18.     $image = ImageCreate($width$height);  
  19.  
  20.     //We are making three colors, white, black and gray  
  21.     $white = ImageColorAllocate($image, 255, 255, 255);  
  22.     $black = ImageColorAllocate($image, 0, 0, 0);  
  23.     $grey = ImageColorAllocate($image, 204, 204, 204); 
  24.  
  25.     //Make the background black  
  26.     ImageFill($image, 0, 0, $black); 
  27.  
  28.     //Add randomly generated string in white to the image 
  29.     ImageString($image, 3, 30, 3, $pass$white); 
  30.  
  31.     //Throw in some lines to make it a little bit harder for any bots to 
  32.  
  33. break  
  34.     ImageRectangle($image,0,0,$width-1,$height-1,$grey);  
  35.     imageline($image, 0, $height/2, $width$height/2, $grey);  
  36.     imageline($image$width/2, 0, $width/2, $height$grey);  
  37.  
  38.     //Tell the browser what kind of file is come in  
  39.     header("Content-Type: image/jpeg"); 
  40. //开源代码phpfensi.com 
  41.     //Output the newly created image in jpeg format  
  42.     ImageJpeg($image);  
  43.      
  44.     //Free up resources 
  45.     ImageDestroy($image);  
  46. }  
  47. ?> 

验证码调用方法,代码如下:

<img height="120" alt="Dynamically generated image" src="generate_image.php" width="200">

Tags: php生成图片验证码

分享到: