GD库生成图片验证码

对于验证码,我们并不陌生,随处可见,比如:登录注册论坛灌水刷票密码破解等,主要作用是屏蔽机器请求,保障业务不受机器提交请求干扰
下面就来写一个验证码demo,使用最常见的字母加数字验证码,加上干扰点和干扰线,使用的GD库生成的,如果你没有安装的话,请自行谷歌安装,另如何判断是否安装启用,请直接在phpinfo页面搜GD库即可
效果如下图:

前台页面


demo.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
if(isset($_REQUEST["code"])){
session_start();
if(strtolower($_POST["code"])==$_SESSION["code"]){
echo "<script>alert('正确!')</script>";
}else{
echo "<script>alert('错误!')</script>";
}
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>验证码</title>
<style>
#code{
border: 1px solid #ccc;
vertical-align: bottom;
}
#refresh{
text-decoration: none;
font-size: .875em;
}
</style>
</head>
<body>
<form action="" method="post">
<p>
验证码:
<img src="code.php?r=<?php echo rand()?>" alt="" id="code">
<a href="javascript:;" id="refresh">看不清?</a>
</p>
<p>
输入验证码:
<input type="text" name="code">
</p>
<input type="submit" value="提交">
<script>
document.getElementById("code").onclick = document.getElementById("refresh").onclick = refresh;
function refresh() {
document.getElementById('code').src='code.php?r='+Math.random()
}
</script>
</form>
</body>
</html>

后台页面


code.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
//启动session
session_start();
$code = ""; //验证码字符串
$str = "qwertyuiopasdfghjklzxcvbnm1234567890"; //验证码字符取值范围[a-z0-9]
$w = 160; //图片宽度
$h = 40; //图片高度
$num = 4; //验证码字符数
$dotNum = 300; //干扰点个数
$lineNum = rand(3, 5); //干扰线条数
$font = "./api/DejaVuSansMono.ttf"; //设置字体文件
$image = imagecreatetruecolor($w, $h); //创建一张指定宽高的图片
$imageColor = imagecolorallocate($image, 255, 255, 255); //设置背景图片颜色为白色
imagefill($image, 0, 0, $imageColor); //填充图片背景
//随机验证码,包含字母和数字
for ($i = 0; $i < $num; $i++) {
$fontColor = imagecolorallocate($image, rand(0, 120), rand(0, 120), rand(0, 120)); //生成随机字体颜色
$content = substr($str, rand(0, strlen($str)), 1); //随机取字符集中的值
$code .= $content;
$fontSize = rand(15, 25); //字体大小
$x = $i * $w / $num + rand(5, 10); //指定生成位置X轴偏移量
$y = rand(20, 30); //指定生成位置Y轴偏移量
imagettftext($image, $fontSize, 0, $x, $y, $fontColor, $font, $content);
}
$_SESSION["code"] = $code; //保存验证码字符串到session中
//生成干扰点
for ($i = 0; $i < $dotNum; $i++) {
$dotColor = imagecolorallocate($image, rand(0, 255), rand(0, 255), rand(0, 255));
imagesetpixel($image, rand(0, $w), rand(0, $h), $dotColor);
}
//生成干扰线
for ($i = 0; $i < $lineNum; $i++) {
$lineColor = imagecolorallocate($image, rand(0, 100), rand(0, 100), rand(0, 100));
imageline($image, rand(0, $w), rand(0, $h), rand(0, $w), rand(0, $h), $lineColor);
}
header("content-type:image/png");
imagepng($image);
imagedestroy($image);

如果您觉得我的文章对您有用,请随意打赏。

您的支持将鼓励我继续创作!

¥ 打赏支持

文章导航

目录

×
  1. 1. 前台页面
  2. 2. 后台页面