首頁 > 後端開發 > php教程 > PHP利用GD函式實作一個簡單的驗證碼

PHP利用GD函式實作一個簡單的驗證碼

WBOY
發布: 2016-07-25 08:42:30
原創
805 人瀏覽過
  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


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板