首页> 基础笔记 >PHP基础学习 >GD库图像处理 GD库图像处理
使用PHP的GD库创建自定义图形验证码
作者:小萝卜 2019-08-24 【 PHP GD库 】 浏览 1493
简介使用验证码的目的:可以防止:恶意破解密码、刷票、论坛灌水,有效防止某个黑客对某一个特定注册用户用特定程序暴力破解方式进行不断的登陆尝试。
使用PHP的GD库创建自定义图形验证码
html代码:
html代码:
<html>
<head>
<title>自定义验证码</title><html>
<head>
<script type="text/javascript">
function showClock()
{
document.getElementById('clock').src= "clock.php?id="+Math.random();
setTimeout('showClock()',1000)
}
</script>
</head>
<body onload="showClock()">
<center>
<img id="clock" src="clock.php" title="Sunshine-BMR" />
</center>
</body>
</html>
php代码:
<?php
//验证码的绘制
//1. 定义初始化信息
$length=4; //验证码位数
$code = getCode($length);//使用自定义函数获取验证码值
//验证码的图片大小
$width=$length*16;
$height=25;
//2.准备画布,和颜色
$im = imagecreatetruecolor($width,$height); //创建一个基于真彩的画布
$bg = imagecolorallocate($im,240,240,240); //背景
$c[0] = imagecolorallocate($im,0,0,255); //篮色
$c[1] = imagecolorallocate($im,106,23,106);
$c[2] = imagecolorallocate($im,18,88,18);
$c[3] = imagecolorallocate($im,109,20,34);
$c[4] = imagecolorallocate($im,20,61,71);
//3.开始绘制
imagefill($im,0,0,$bg);
//绘制验证码
for($i=0;$i<$length;$i++){
imagettftext($im,15,rand(-45,45),2+$i*15,18,$c[rand(0,4)],'msyh.ttf',$code[$i]);
}
//添加随机的干扰点和线
for($i=0;$i<100;$i++){
$cc = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im,rand(0,$width),rand(0,$height),$cc);
}
for($i=0;$i<6;$i++){
$cc = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imageline($im,rand(0,$width),rand(0,$height),rand(0,$width),rand(0,$height),$cc);
}
//4.输出验证码图片
header("Content-Type:image/png");
imagepng($im);
//5.释放资源
imagedestroy($im);
/*
*自定义一个随机验证码的函数
*@param int $length 验证码的位数
*@param int $type 验证码的类型:1纯数字,2小写字母与数字混合 其他为大小写字母与数字混合
*@return string 验证码
*/
function getCode($length=4,$type=1){
$str="0123456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJIKLMNOPQRSTUVWXYZ";
$m = strlen($str)-1; //获取随机长度
if($type==1){
$m=9;//控制验证码随机长度为9表示纯数字
}elseif($type==2){
$m=33;
}
$code="";
//开始循环随机验证码值
for($i=0;$i<$length;$i++){
$code.=$str[rand(0,$m)];
}
return $code;
}
很赞哦! (0)
上一篇:使用PHP的GD库构建太极图案
下一篇:PHP用GD库实现图片旋转和翻转