GD庫生成圖片驗證碼

2020-07-16 10:05:54
對於驗證碼,我們並不陌生,隨處可見,比如:登入註冊、論壇灌水、刷票、密碼破解等,主要作用是遮蔽機器請求,保障業務不受機器提交請求干擾。

下面就來寫一個驗證碼demo,使用最常見的字母加數位驗證碼,加上干擾點和干擾線,使用的GD庫生成的,如果你沒有安裝的話,請自行谷歌安裝,另如何判斷是否安裝啟用,請直接在phpinfo頁面搜GD庫即可

效果如下圖:

5ed6c1cb4851a1d7da179d4b1ffa844.png

前台頁面

<?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>
<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>

後台頁面

<?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);

以上就是GD庫生成圖片驗證碼的詳細內容,更多請關注TW511.COM其它相關文章!