12306 인증 코드는 중국어 영숫자, 사용자 정의 글꼴을 지원합니다. PHP 인증 코드 코드

WBOY
풀어 주다: 2016-07-29 08:48:10
원래의
1310명이 탐색했습니다.

코드 복사 코드는 다음과 같습니다.


/*
* PHP GD Lib의 보안 문자 클래스 기반
* @author Design
* @version 1.0
* @demo
* include('captchaClass.php');
* $captchaDemo=new Captcha();
* $captchaDemo->createImage()
*/
class Captcha{
// @인증 코드 이미지 높이 정의
private $height;
//@인증 코드 이미지 너비 정의
private $width
//@인증 코드 문자 수 정의
private $textNum;
//@인증 코드 문자 내용 정의
private $textContent;
//@문자 색상 정의
private $fontColor;//@임의의 텍스트 색상 정의
private $randFontColor
//@글꼴 크기 정의
private $fontSize;
//@글꼴 정의
private $fontFamily
//@배경 색상 정의
private $bgColor ;
//@임의의 배경색 정의
private $randBgColor;
//@문자 언어 정의
private $textLang;//@간섭 지점 수 정의
private $noisePoint;
//@간섭선 수 정의
private $noiseLine;
//@왜곡 여부 정의
private $distortion
//@왜곡 정의 이미지 소스
private $distortionImage
//@테두리 유무 정의
private $showBorder
//@인증 코드 이미지 소스 정의
private $image; //@생성자 생성자
public function Captcha(){
$this->textNum=4;
$this->f
$this->f//중국어 글꼴 설정 , Linux 디렉토리로 변경 가능
$this->noisePoint=30
$this->noiseLine=3; $this->distortion=false;
$this->showBorder=false;
}
//@이미지 너비 설정
공용 함수 setWidth($w){
$ this->width=$w;
}
//@이미지 높이 설정
public function setHeight($h){
$this->height=$h; }
//@문자 수 설정
public function setTextNumber($textN){
$this->textNum=$textN;
}
//@문자 색상 설정
공용 함수 setFontColor($fc){
$this ->f
}
//@글꼴 크기 설정
공용 함수 setFontSize($n){
$this-> ;f
}
//@글꼴 설정
public function setFontFamily($ffUrl){
$this->f
}
//@문자 언어 설정
공용 함수 setTextLang($lang){
$this-> textLang=$lang;
}
//@이미지 배경 설정
공용 함수 setBgColor($bc){
$this ->bgColor=sscanf($bc,'#%2x%2x %2x') ​​
}
//@노이즈 포인트 수 설정
공개 함수 setNoisePoint($n){
$this->noisePoint=$n;
}
//@간섭선 개수 설정
public function setNoiseLine($n){
$this->noiseLine= $n;
}
//@왜곡 여부 설정
공개 함수 setDistortion($b){
$this->distortion=$b; @테두리 표시 여부 설정
공개 함수 setShowBorder($border){
$this-> ;showBorder=$border
}
//@초기화 확인 코드 이미지
공개 함수 initImage(){
if(empty($this->width)){$this-> width=floor($this->fontSize*1.3)*$this->textNum 10;}
if(empty($this->height)){$this->height=$this-> ;fontSize*2;}
$this->image=imagecreatetruecolor($this->width, $this->height);
if(empty($this->bgColor)){
$this->randBgColor=imagecolorallocate($this->image,mt_rand(100,255),mt_rand( 100,255),mt_rand(100,255));
}else{
$this->randBgColor= imagecolorallocate($this->image,$this->bgColor[0],$this->bgColor [1],$this->bgColor[2]);
}
imagefill($ this->image,0,0,$this->randBgColor)
}
//@임의의 문자 생성
public function randText($type){
$string=''
switch($type){
case 'en':
$str=' ABCDEFGHJKLMNPQRSTUVWXY3456789';
for($i=0;$i<$this->textNum;$i ){
$string=$string.','.$str[mt_rand(0,29)] ;
}
break;
case 'cn':
for($i =0;$i<$this->textNum;$i ) {
$string=$string .','.chr(rand(0xB0,0xCC)).chr(rand(0xA1,0xBB))
}
$string=iconv('GB2312','UTF-8',$string) ; //인코딩을 utf8로 변환
break;
}
return substr($string, 1)
//@인증 코드로 텍스트 출력
){
$textArray=explode(',',$this->randText($this-> ;textLang))
$this->textC
if(empty($this-> ;fontColor)){
$this->randF
}else{
$this ->randF
}
for($i=0;$i<$this-> ;textNum;$i ){
$angle=mt_rand(-1,1)*mt_rand(1, 20)
imagettftext($this->image,$this->fontSize,$angle, 5 $i*floor($this->fontSize*1.3),floor($this->height* 0.75),$this->randFontColor,$this->fontFamily,$textArray[$i]);
}
}
//@간섭점 생성
공용 함수 createNoisePoint() {
for($i=0;$i<$this->noisePoint;$i ){
$pointColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255), mt_rand(0,255))
imagesetpixel($this->image,mt_rand(0,$this-) >width),mt_rand(0,$this->height),$pointColor)
}
}
//@간섭선 생성
공용 함수 createNoiseLine(){
for($i=0;$i<$this->noiseLine;$i ) {
$lineColor=imagecolorallocate( $this->image,mt_rand(0,255),mt_rand(0,255),20)
imageline($this->image,0,mt_rand(0,$this->width),$this-> ;width,mt_rand(0,$this->height),$lineColor)
}
}
//@Distorted text
public functionistortionText(){
$this- >distorti
imagefill($this->distortionImage,0,0,$this->randBgColor)
for($x=0;$x<$this->width;$x ) {
for($y=0;$y<$this->height;$y ){
$rgbColor=imagecolorat($this->image,$x,$y)
imagesetpixel($this->distortionImage,(int)($x sin($y/$this->height*2*M_PI-M_PI*0.5)*3),$y,$rgbColor)
}
}
$this->image=$this->distortionImage;
}
//@인증 코드 이미지 생성
public function createImage(){
$this- >initImage(); //기본 이미지 생성
$this->createText(); //인증코드 문자 출력
if($this->distortion){$this->distortionText () ;} //왜곡된 텍스트
$this->createNoisePoint(); //간섭점 생성
$this->createNoiseLine() //간섭선 생성
if($this- > showBorder){imageretangle($this->image,0,0,$this->width-1,$this->height-1,$this->randFontColor);} //테두리 추가
imagepng($this->image);
imagedestroy($this->image)
if($this->distortion){imagedestroy($this->$distortionImage);}
return $this->textContent;
}
}
?>사용법:
//session_start()
header("Content - type:image/png");
include('captcha5_class.php');
$captcha5=new Captcha();
//@인증 코드 너비 설정
//$captcha5 -> ;setWidth(200)
//@인증코드 높이 설정
//$captcha5->setHeight(50)
//@문자수 설정
$captcha5 ->setTextNumber (5);
//@문자 색상 설정
//$captcha5->setFontColor('#ff9900')
//@글꼴 크기 설정
//$ captcha5-> setFontSize(25);
//@글꼴 설정
$captcha5->setFontFamily('c:windowsfontsSTXINGKA.TTF')
//@언어 설정
$captcha5- >setTextLang( 'cn');//@배경색 설정
//$captcha5->setBgColor('#000000')
//@간섭점 개수 설정
//$captcha5- >setNoisePoint(600)
//@간섭선 수 설정
//$captcha5->setNoiseLine(10)
//@설정 여부 설정 distort
//$captcha5-> ;setDistortion(true);
//@테두리 표시 여부 설정
$captcha5->setShowBorder(true)//인증코드 출력
$code=$captcha5->createImage( )
//$_SESSION['captchaCode']['content']=$code
//$_SESSION['captchaCode'][' 시간']=마이크로타임();
?> ;
위 내용은 12306 인증 코드를 소개하고 있으며, 12306 인증 코드의 내용을 포함하여 중국어 영숫자 및 사용자 정의 글꼴을 지원합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿