ホームページ  >  記事  >  バックエンド開発  >  PHP は英数字の検証コード イメージを生成します

PHP は英数字の検証コード イメージを生成します

WBOY
WBOYオリジナル
2016-07-25 08:44:37979ブラウズ

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<4;$i++){
  7. // $font=6;
  8. / / $x=rand(5,10)+$i*100/4;
  9. // $y=rand(8, 15);
  10. // $string=rand(0, 9);
  11. // $color= imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120));
  12. // imagestring($image, $font, $x, $y, $string, $color);
  13. // }
  14. //数字と文字を含む
  15. for($i=0;$i<4;$i++){
  16. $fontSize=6;
  17. $x=rand(5,10)+$i*100/4;
  18. $ y=rand(5, 15);
  19. $data='abcdefghijklmnopqrstuvwxyz123456789';
  20. $string=substr($data,rand(0, strlen($data)),1);
  21. $color=imagecolorallocate($image, rand (0,120), rand(0,120), rand(0,120));
  22. imagestring($image, $fontSize, $x, $y, $string, $color);
  23. }
  24. //干渉点要素
  25. for($ i =0;$i<200;$i++){
  26. $pointColor=imagecolorallocate($image, rand(100, 255), rand(100, 255), rand(100, 255));
  27. imagesetpixel($image, rand (0, 100), rand(0, 30), $pointColor);
  28. }
  29. //干渉線要素
  30. for($i=0;$i<2;$i++){
  31. $linePoint=imagecolorallocate($ image 、 rand(150, 255), rand(150, 255), rand(150, 255));
  32. imageline($image, rand(10, 50), rand(10, 20), rand(80,90) , rand(15, 25), $linePoint);
  33. }
  34. imagepng($image);
  35. imagedestroy($image);
  36. ?>
コードをコピー

以上がこの記事の全内容です。皆さんに気に入っていただければ幸いです。

確認コード、php


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。