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

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

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

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