>백엔드 개발 >PHP 튜토리얼 >PHP 확인 코드에 대한 래퍼 클래스

PHP 확인 코드에 대한 래퍼 클래스

WBOY
WBOY원래의
2016-07-25 08:58:471032검색
  1. /**

  2. * 인증 코드 클래스
  3. * bbs.it-home.org 편집
  4. */
  5. class ValidationCode {
  6. private $width;
  7. private $height;
  8. private $codeNum;
  9. private $image; //이미지 리소스
  10. private $disturbColorNum;
  11. private $checkCode;
  12. function __construct($width=80, $height=20, $codeNum=4){
  13. $this->width=$width;
  14. $this->height=$height;
  15. $this->codeNum=$codeNum;
  16. $this->checkCode=$this->createCheckCode();
  17. $number=floor($width*$height/15);

  18. if( $number > 240-$codeNum){

  19. $this->disturbColorNum= 240-$codeNum;
  20. }else{
  21. $this->disturbColorNum=$number;
  22. }< /p>
  23. }

  24. //이 메소드에 액세스하여 이미지를 브라우저에 출력합니다.
  25. function showImage($fontFace=""){
  26. //1단계: 이미지 생성 배경
  27. $this->createImage();
  28. //두 번째 단계: 간섭 요소 설정
  29. $this->setDisturbColor();
  30. //세 번째 단계: 무작위로 추가 이미지 텍스트 그리기
  31. $this->outputText($fontFace);
  32. //4단계: 이미지 출력
  33. $this->outputImage();
  34. }

  35. //이 메소드를 호출하여 무작위로 생성된 인증 코드 문자열을 가져옵니다.

  36. function getCheckCode(){
  37. return $this->checkCode;
  38. }
  39. 비공개 함수 createImage( ) {
  40. //이미지 리소스 만들기//bbs.it-home.org
  41. $this->image=imagecreatetruecolor($this->width, $this->height);
  42. / / 임의의 배경색
  43. $backColor=imagecolorallocate($this->image, rand(225, 255), rand(225,255), rand(225, 255));
  44. //배경에 색상 추가
  45. imagefill($this->image, 0, 0, $backColor);
  46. //테두리 색상 설정
  47. $border=imagecolorallocate($this->image, 0, 0, 0);
  48. //직사각형 테두리 그리기
  49. imageRectangle($this->image, 0, 0, $this->width-1, $this->height-1, $border);
  50. }
  51. 비공개 함수 setDisturbColor(){
  52. for($i=0; $i<$this->disturbColorNum; $i ){
  53. $color=imagecolorallocate($this->image, rand( 0, 255), rand(0, 255), rand(0, 255));
  54. imagesetpixel($this->image, rand(1, $this->width-2), rand(1, $this->height-2), $color);
  55. }
  56. for($i=0; $i<10; $i ){
  57. $color=imagecolorallocate($this-> image, rand(200, 255), rand(200, 255), rand(200, 255));
  58. imagearc($this->image, rand(-10, $this->width), rand (-10, $this->height), rand(30, 300), rand(20, 200), 55, 44, $color);
  59. }
  60. }
  61. 비공개 함수 createCheckCode() {
  62. //여기서 무작위 코드를 생성하는 주요 목적은 1을 l과 구별하는 것입니다
  63. $code="23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ";
  64. $string='';
  65. for($i=0; $ i < $this->codeNum; $i ){
  66. $char=$code{rand(0, strlen($code)-1)};
  67. $string.=$char;
  68. }
  69. return $string;
  70. }
  71. 비공개 함수 outputText($fontFace=""){
  72. for($i=0; $i<$this->codeNum; $i ) {
  73. $fontcolor=imagecolorallocate($this->image, rand(0, 128), rand(0, 128), rand(0, 128));
  74. if($fontFace=="") {
  75. $fontsize=rand(3, 5);
  76. $x=floor($this->width/$this->codeNum)*$i 3;
  77. $y=rand(0 , $this->height-15);
  78. imagechar($this->image,$fontsize, $x, $y, $this->checkCode{$i},$fontcolor);
  79. } else{
  80. $fontsize=rand(12, 16);
  81. $x=floor(($this->width-8)/$this->codeNum)*$i 8;
  82. $ y=rand($fontSize 5, $this->height);
  83. imagettftext($this->image,$fontsize,rand(-30, 30),$x,$y ,$fontcolor, $fontFace , $this->checkCode{$i});
  84. }
  85. }
  86. }

  87. //이미지 정보 출력

  88. 비공개 함수 outputImage () {
  89. if(imagetypes() & IMG_GIF){
  90. header("Content-Type:image/gif");
  91. imagepng($this->image);
  92. }else if (imagetypes () & IMG_JPG){
  93. header("Content-Type:image/jpeg");
  94. imagepng($this->image) //bbs.it-home.org
  95. } else if (imagetypes() & IMG_PNG){
  96. header("Content-Type:image/png");
  97. imagepng($this->image);
  98. }else if(imagetypes() & IMG_WBMP) {
  99. header("Content-Type:image/vnd.wap.wbmp");
  100. imagepng($this->image);
  101. }else{
  102. die("PHP는 지원하지 않습니다. 이미지 생성");
  103. }
  104. }
  105. function __destruct(){
  106. imagedestroy($this->image);
  107. }
  108. }
  109. ?>< ; /p>
코드 복사

인증 코드 클래스 호출 예:

  1. session_start();
  2. include "validationcode.class.php";
  3. $code=new ValidationCode( 80, 20, 4);
  4. $code->showImage(); //등록 또는 로그인 페이지에 출력
  5. $_SESSION["code"]=$code->getCheckCode() / /인증코드를 서버에 저장
  6. ?>
코드 복사


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.