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

WBOY
풀어 주다: 2016-07-25 08:44:37
원래의
938명이 탐색했습니다.

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

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

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

验证码, php


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!