>  기사  >  백엔드 개발  >  PHP 제작 그래픽 인증 코드 코드 Sharing_php 예

PHP 제작 그래픽 인증 코드 코드 Sharing_php 예

WBOY
WBOY원래의
2016-05-16 20:34:191203검색

효과:

myvcode.class.php: 인증 코드 생성을 위한 클래스를 캡슐화합니다

52029f6c0b2e00fde62b633f6c7750ccwidth = $width;<br>$this->height = $height;<br>$this->codeNum = $codeNum;<br>$this->pixNum = $pixNum;<br>$this->lineNum = $lineNum;<br>}<br>/*内部私有方法,创建图像资源*/<br>private function getCreateImage()<br>{<br>$this->image = imagecreatetruecolor($this->width, $this->height);<br>$white = imagecolorallocate($this->image,0xff,0xff,0xff);<br>imagefill($this->image, 0, 0, $white);<br>$black = imagecolorallocate($this->image,0,0,0);<br>imagerectangle($this->image, 0, 0, $this->width-1, $this->height-1, $black);<br>}<br>/*内部私有方法,绘制字符,去掉o0Llz和012*/<br>private function createCheckCode()<br>{<br>$code = '3456789abcdefghijkmnpqrstuvwxyABCDEFGHIJKMNPQRSTUVWXY';<br>$this->checkCode = "";<br>for($i=0; $i1c3d29443c4e273256f32fb1b3e7ccaacodeNum;$i++)<br>{<br>$char = $code{rand(0,strlen($code) - 1)};<br>$this->checkCode .= $char;<br>$fontColor = imagecolorallocate($this->image, rand(0,128), rand(0,128),rand(0,128));<br>$fontSize = rand(3,5);<br>$x = rand(0,$this->width-imagefontwidth($fontSize));<br>$y = rand(0,$this->height-imagefontheight($fontSize));<br>imagechar($this->image, $fontSize, $x, $y, $char, $fontColor);<br>}<br>}<br>/*内部私有方法设置干扰元素*/<br>private function setDisturbColor()<br>{<br>/*绘制干扰点*/<br>for($i=0; $i1c3d29443c4e273256f32fb1b3e7ccaapixNum; $i++)<br>{<br>$color = imagecolorallocate($this->image, rand(0,255), rand(0,255), rand(0,255));<br>imagesetpixel($this->image, rand(1,$this->width-2), rand(1,$this->height-2), $color);<br>}<br>/*绘制干扰线*/<br>for($i=0; $i1c3d29443c4e273256f32fb1b3e7ccaalineNum; $i++)<br>{<br>$color = imagecolorallocate($this->image, rand(0,255), rand(0,255), rand(0,255));<br>imageline($this->image, rand(1,$this->width / 2), rand(1,$this->height / 2),<br>rand($this->width / 2,$this->width – 2), rand($this->height / 2,$this->height – 2), $color);
}<br>}<br>/*开启session保存 利用echo 输出图像*/<br>function __toString()<br>{<br>$_SESSION['code'] = strtoupper($this->checkCode);<br>$this->getCreateImage();<br>$this->createCheckCode();<br>$this->setDisturbColor();<br>$this->outputImg();<br>}<br>/*内部私有方法输出图像*/<br>private function outputImg()<br>{<br>header("content-type:image/png");<br>imagepng($this->image);<br>}<br>/*析构方法,释放对象*/<br>function __destruct()<br>{<br>imagedestroy($this->image);<br>}<br>}<br>?>

imgcode.php 출력 이미지

<&#63;php
session_start();
require_once('myvcode.class.php');
echo new Vcode();
&#63;>

test.html: img 태그 참조와 동일

<img src="imgcode.php">

태그를 추가하고 js를 사용하여 사진 한 장을 바꾸는 효과를 얻을 수 있습니다.

/*인증 코드를 변경하려면 부분 새로고침*/
함수 변경코드()
{
var imgcode = document.getElementById('code');
var 변경 = document.getElementById('change');
Change.onclick = 함수()
{
/*새로고침하려면 다음 매개변수를 추가해야 합니다*/
imgcode.src='code.php?tm' Math.random();
}
}

code와 Change는 각각 img와 a의 ID입니다

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