Heim  >  Artikel  >  Backend-Entwicklung  >  php生成数字字母的验证码图片

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

WBOY
WBOYOriginal
2016-07-25 08:44:37978Durchsuche

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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php算法实例分享 Nächster Artikel:使用URL传输SESSION信息