首頁  >  文章  >  後端開發  >  php數字驗證碼

php數字驗證碼

WBOY
WBOY原創
2016-07-25 09:09:01767瀏覽
  1. session_start();
  2. //生成验证码图片
  3. Header("Content-type: image/PNG");
  4. srand((double)microtime()*1000000);
  5. $im = imagecreate(62,20);
  6. $black = ImageColorAllocate($im, 69,120,239);
  7. $white = ImageColorAllocate($im, 0,0,0);
  8. $gray = ImageColorAllocate($im, 200,200,200);
  9. imagefill($im,68,30,$gray);
  10. while(($authnum=rand()%100000)<10000);
  11. //将五位整数验证码绘入图片
  12. imagestring($im, 5, 10, 3, $authnum, $white);
  13. for($i=0;$i<200;$i++) //加入干扰象素
  14. {
  15. $randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
  16. imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
  17. }
  18. ImagePNG($im);
  19. ImageDestroy($im);
  20. $_SESSION['SESSION_VALIDATE_CODE'] = $authnum.'';
  21. ?>
  22. $txt="memory";
  23. $im = imagecreatetruecolor(400,30);
  24. $white = ImageColorAllocate($im, 255,255,255);
  25. $black = ImageColorAllocate($im, 0,0,0);
  26. // Replace path by your own font path
  27. imagestring($im,1,10,10,$txt,$black);
  28. //imagettftext($im, 20, 0, 10, 20, $black, "font.ttf","Testing...");
  29. header("Content-type:image/jpeg");
  30. imagejpeg($im);
  31. // imagedestroy($im);
复制代码


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn