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

php生成数字字母的验证码图片

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-12 19:42:27 浏览: 评论:0 

本文给大家分享的是使用php实现的生成包含数字字母的验证码图片的代码,十分的简单实用,有需要的小伙伴可以参考下,php生成数字字母的验证码图片。

  1. <?php 
  2.  
  3. header ('Content-Type: image/png'); 
  4. $image=imagecreatetruecolor(100, 30); 
  5. $color=imagecolorallocate($image, 255, 255, 255); 
  6. imagefill($image, 20, 20, $color); 
  7. //只含有数字 
  8. // for($i=0;$i<4;$i++){ 
  9.   // $font=6; 
  10.   // $x=rand(5,10)+$i*100/4; 
  11.   // $y=rand(8, 15); 
  12.   // $string=rand(0, 9); 
  13.   // $color=imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120)); 
  14.   // imagestring($image, $font, $x, $y, $string, $color); 
  15. // } 
  16.  
  17. //含有数字和字母的 
  18. for($i=0;$i<4;$i++){ 
  19.   $fontSize=6; 
  20.   $x=rand(5,10)+$i*100/4; 
  21.   $y=rand(5, 15); 
  22.   $data='abcdefghijklmnopqrstuvwxyz123456789'
  23.   $string=substr($data,rand(0, strlen($data)),1); 
  24.   $color=imagecolorallocate($image,rand(0,120), rand(0,120), rand(0,120)); 
  25.   imagestring($image$fontSize$x$y$string$color); 
  26. //干扰点元素 
  27. for($i=0;$i<200;$i++){ 
  28.   $pointColor=imagecolorallocate($image, rand(100, 255), rand(100, 255), rand(100, 255)); 
  29.   imagesetpixel($image, rand(0, 100), rand(0, 30), $pointColor); 
  30. //干扰线元素 
  31. for($i=0;$i<2;$i++){ 
  32.   $linePoint=imagecolorallocate($image, rand(150, 255), rand(150, 255), rand(150, 255)); 
  33.   imageline($image, rand(10, 50), rand(10, 20), rand(80,90), rand(15, 25), $linePoint); 
  34. imagepng($image); 
  35. imagedestroy($image); 
  36. ?> 

以上所述就是本文的全部内容了,希望大家能够喜欢。

Tags: php生成验证码

分享到: