php 복잡 한 인증 코드 생 성(경사,사인 간섭 선,접착,회전)

현재 많은 사이트 에서 사용 하 는 인증 코드 는 소프트웨어 에 의 해 자동 으로 식별 되 기 쉽다.본 고 는 PHP 생 성 복잡 한 인증 코드 에 경사,현 간섭 선,접착,회전 등 효 과 를 소개 했다.
흔히 볼 수 있 는 소프트웨어 가 자동 으로 식별 되 지 않 는 인증 코드 방법 은 다음 과 같은 세 가지 가 있다.
1.글씨체 변형(일반적으로 알고리즘 을 통 해 왜곡)

2.글꼴 붙 여 넣 기(이 안 에는 qq 인증 코드 가 대표 되 어 있 습 니 다.현재 인터넷 에서 찾기 어렵 습 니 다.qq 인증 코드 를 풀 수 있 습 니 다)

3.간섭 선,소음(이런 식별 은 상당히 쉽 고 프로그램 자동화 에 의 해 쉽게 식별 된다)
위 에서 언급 한 바 와 같이 1,2,2 의 방법 은 식별 할 때 비교적 어렵다.
구현 코드:

<?php
/**
 *     ,  ,  ,         *
 */
class Utils_Caption
{
	var $Width   = 60;      //   
	var $Height   = 30;      //   
	var $Length   = 4;      //     
	var $BgColor  = "#FFFFFF";  //   

	var $TFonts = array("font.ttf");
	var $TFontSize=array(17,20); //      
	var $TFontAngle=array(-20,20); //    

	var $Chars  = "0123456789";     //     (    )

	var $Code  = array();       //   
	var $Image  = "";       //    
	var $FontColors=array('#f36161','#6bc146','#5368bd'); //    ,   
	var $TPadden = 0.75;///    ,     
	var $Txbase = 5;///x     
	var $Tybase =5 ;///y     
	var $TLine =true; ///    


	public function RandRSI() ///     
	{
		$this->TFontAngle=range($this->TFontAngle[0],$this->TFontAngle[1]);
		$this->TFontSize=range($this->TFontSize[0],$this->TFontSize[1]);

		$arr=array();
		$Chars=$this->Chars;
		$TFontAngle=$this->TFontAngle;
		$TFontSize=$this->TFontSize;
		$FontColors=$this->FontColors;
		$code="";
		$font=dirname(__FILE__)."/font/".$this->TFonts[0];

		$charlen=strlen($Chars)-1;
		$anglelen=count($TFontAngle)-1; //     
		$fontsizelen=count($TFontSize)-1; //     
		$fontcolorlen=count($FontColors)-1; //     

		for($i=0;$i<$this->Length;$i++) ///       
		{
			$char=$Chars[rand(0,$charlen)]; ///    
			$angle=$TFontAngle[rand(0,$anglelen)]; ///    
			$fontsize=$TFontSize[rand(0,$fontsizelen)]; ///    
			$fontcolor=$FontColors[rand(0,$fontcolorlen)]; ///    

			$bound=$this->_calculateTextBox($fontsize,$angle,$font,$char); ///    

			$arr[]=array($fontsize,$angle,$fontcolor,$char,$font,$bound); ///     
			$code.=$char;
		}
		$this->Code=$arr; //   
		return $code;
	}

	public function Draw() ///  
	{
		if(empty($this->Code)) $this->RandRSI();
		$codes=$this->Code; ///     


		$wh=$this->_getImageWH($codes);

		$width=$wh[0];
		$height=$wh[1]; ///  

		$this->Width=$width;
		$this->Height=$height;

		$this->Image = imageCreate( $width, $height );
		$image=$this->Image;

		$back = $this->_getColor2($this->_getColor( $this->BgColor)); ///    
		imageFilledRectangle($image, 0, 0, $width, $height, $back); ///    

		$TPadden=$this->TPadden;

		$basex=$this->Txbase;
		$color=null;
		foreach ($codes as $v) ///     
		{
			$bound=$v[5];
			$color=$this->_getColor2($this->_getColor($v[2]));
			imagettftext($image, $v[0], $v[1], $basex, $bound['height'],$color , $v[4], $v[3]);
			$basex=$basex+$bound['width']*$TPadden-$bound['left'];///        
		}
		$this->TLine?$this->_wirteSinLine($color,$basex):null; ///    
		header("Content-type: image/png");
		imagepng( $image);
		imagedestroy($image);

	}

	/**
	 *              *
	 *
	 * @param int $font_size     
	 * @param float $font_angle     
	 * @param string $font_file       
	 * @param string $text     
	 * @return array      
	 */
	private function _calculateTextBox($font_size, $font_angle, $font_file, $text) {
		$box = imagettfbbox($font_size, $font_angle, $font_file, $text);

		$min_x = min(array($box[0], $box[2], $box[4], $box[6]));
		$max_x = max(array($box[0], $box[2], $box[4], $box[6]));
		$min_y = min(array($box[1], $box[3], $box[5], $box[7]));
		$max_y = max(array($box[1], $box[3], $box[5], $box[7]));

		return array(
		'left' => ($min_x >= -1) ? -abs($min_x + 1) : abs($min_x + 2),
		'top' => abs($min_y),
		'width' => $max_x - $min_x,
		'height' => $max_y - $min_y,
		'box' => $box
		);
	}

	private function _getColor( $color ) //#ffffff
	{
		return array(hexdec($color[1].$color[2]),hexdec($color[3].$color[4]),hexdec($color[5].$color[6]));
	}

	private function _getColor2( $color ) //#ffffff
	{
		return imagecolorallocate ($this->Image, $color[0], $color[1], $color[2]);
	}

	private function _getImageWH($data)
	{
		$TPadden=$this->TPadden;
		$w=$this->Txbase;
		$h=0;
		foreach ($data as $v)
		{
			$w=$w+$v[5]['width']*$TPadden-$v[5]['left'];
			$h=$h>$v[5]['height']?$h:$v[5]['height'];
		}
		return array(max($w,$this->Width),max($h,$this->Height));
	}

	//      
	private function _wirteSinLine($color,$w)
	{
		$img=$this->Image;

		$h=$this->Height;
		$h1=rand(-5,5);
		$h2=rand(-1,1);
		$w2=rand(10,15);
		$h3=rand(4,6);

		for($i=-$w/2;$i<$w/2;$i=$i+0.1)
		{
			$y=$h/$h3*sin($i/$w2)+$h/2+$h1;
			imagesetpixel($img,$i+$w/2,$y,$color);
			$h2!=0?imagesetpixel($img,$i+$w/2,$y+$h2,$color):null;
		}
	}
}
DEMO 코드:

$rsi = new Utils_Caption();
$rsi->TFontSize=array(15,17);
$rsi->Width=50;
$rsi->Height=25;
$code = $rsi->RandRSI();
session_start();
$_SESSION["CHECKCODE"] = $code;
$rsi->Draw();
실행 효과:
 
클릭 하여 원본 다운로드
여러분 은 코드 중의 상응하는 수 치 를 수정 하여 자신 이 필요 로 하 는 복잡 도 에 이 를 수 있 습 니 다.

좋은 웹페이지 즐겨찾기