当前位置:Gxlcms > PHP教程 > PHP利用GD库实现一个简单的验证码

PHP利用GD库实现一个简单的验证码

时间:2021-07-01 10:21:17 帮助过:4人阅读

  1. $img=imagecreatetruecolor(100, 40);
  2. $red=imagecolorallocate($img, 255, 0, 0);
  3. $green=imagecolorallocate($img, 0, 255, 0);
  4. $blue=imagecolorallocate($img, 0, 0, 255);
  5. $white=imagecolorallocate($img, 255, 255, 255);
  6. $black=imagecolorallocate($img, 0, 0, 0);
  7. //生成图片
  8. imagefill($img, 0, 0, $black);
  9. //设置验证码
  10. $code="";
  11. for($i=0;$i<5;$i++){
  12. $code.=rand(0,9);
  13. }
  14. //验证码写到图片中
  15. imagestring($img, 5, 20, 15, $code, $white);
  16. //加点儿干扰
  17. for($i=0;$i<10;$i++){
  18. imagesetpixel($img, rand(0,100), rand(0,40), $red);
  19. imagesetpixel($img, rand(0,100), rand(0,40), $green);
  20. imagesetpixel($img, rand(0,100), rand(0,40), $blue);
  21. }
  22. //再加点儿干扰
  23. for($i=0;$i<1;$i++){
  24. imageline($img, rand(0,50), rand(0,20), rand(50,100), rand(20,40), $red);
  25. imageline($img, rand(0,50), rand(0,20), rand(50,100), rand(20,40), $green);
  26. imageline($img, rand(0,50), rand(0,20), rand(50,100), rand(20,40), $blue);
  27. }
  28. header("Content-type:image/png");
  29. imagepng($img);
  30. imagedestroy($img);
  31. ?>

验证码, PHP

人气教程排行