매우 실 용적 인 php 인증 코드 클래스
<?php
/**
*
* @author Administrator
*
*/
class ValidateCode{
private $width;
private $height;
private $codeNum;
private $img_resouce;
private $disturbColorNum;
private $checkCode;
function __construct($width=80,$height=20,$codeNum=4) {
$this->width=$width;
$this->height=$height;
$this->codeNum=$codeNum;
$this->checkCode=$this->CreateCheckCode();
$number=floor($width*$height/25);
if ($number>240-$codeNum) {
$this->disturbColorNum=240-$codeNum;
}else{
$this->disturbColorNum=$number;
}
}
public function showImage($fontpath='') {
//
$this->Img_resouce();
//var_dump($img_resouce);
//
$this->setDistructcolor();
//
$this->outputtext($fontpath);
//
$this->outputimage();
}
/**
*
*
*/
public function getCheckCode(){
}
private function Img_resouce(){
//
$this->img_resouce=imagecreatetruecolor($this->width,$this->height);
//
$backcolor=imagecolorallocate($this->img_resouce,rand(225,255),rand(225,255),rand(225,255));
//
imagefill($this->img_resouce, 0, 0, $backcolor);
//
$border=imagecolorallocate($this->img_resouce, 0,0,0);
//
imagerectangle($this->img_resouce,0,0,$this->width-1,$this->height-1,$border);
}
private function setDistructcolor(){
//
for ($i = 0; $i <$this->disturbColorNum; $i++) {
imagesetpixel($this->img_resouce, rand(1, $this->width-2), rand(1, $this->height-2), rand(0,255));
}
//
for ($j = 0; $j <3; $j++) {
$linecolor=imagecolorallocate($this->img_resouce,rand(0,255),rand(0,255),rand(0,255));
imagearc($this->img_resouce, rand(0,$this->width), rand(0,$this->height),
rand(10, 225), rand(20, 150),
55, 44, $linecolor);
}
}
private function CreateCheckCode(){
$code='23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ';
$string='';
for ($i = 0; $i < $this->codeNum; $i++) {
$char=$code{rand(0, strlen($code)-1)};
$string.=$char;
}
return $string;
}
private function outputtext($fontpath=''){
for ($i = 0; $i < $this->codeNum; $i++) {
$fontcolor=imagecolorallocate($this->img_resouce, rand(0,128), rand(0, 128), rand(0, 128));
if ($fontpath=='') {
$fontsize=rand(3, 5);
$x=floor($this->width/$this->codeNum)*$i+3;
$y=rand(0, $this->height-20);
imagechar($this->img_resouce, $fontsize, $x, $y, $this->checkCode{$i}, $fontcolor);
}else{
$fontsize=rand(12, 16);
$x=floor(($this->width-8)/$this->codeNum)*$i+8;
$y=rand($fontsize, $this->height-15);
imagettftext($this->img_resouce,$fontsize,rand(-45,45),$x,$y,$fontcolor,fontpath,$this->checkCode{$i});
}
}
}
private function outputimage() {
if (imagetypes() & IMG_GIF) {
header("Content-type: image/gif");
imagegif($this->img_resouce);
}else if(imagetypes() & IMG_JPEG) {
header("Content-type: image/jpeg");
imagejpeg($this->img_resouce);
}else if(imagetypes() & IMG_PNG) {
header("Content-type: image/png");
imagepng($this->img_resouce);
}else {
echo "PHP ";
}
}
private function __destruct(){
imagedestroy($this->img_resouce);
}
}
?>
이상 은 본문의 전체 내용 이 므 로 여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.