php中如何将验证码放入页面,如何在php中生成验证码图片
1.獲取生成驗證碼字體:
在php文件路徑新建一個fonts文件夾,里面有字體文件。
//判定字體資源
if(empty($fonts))
$fonts="arial.ttf";
//確認字體路徑
$fonts=__DIR__."/fonts/".$fonts;
$fonts=str_replace("/","\\",$fonts);
2.制作畫布,隨機分配背景色
$img=imagecreatetruecolor($width,$height);
$bg_color=imagecolordeallocate($img,mt_rand(200,255),mt_rand(200,250));
imagefilter($img,0,0,$bg_color);
3.增加干擾點、線
//增加干擾點:*
for($i = 0;$i < 50;$i++)
{
//隨機顏色
$dots_color = imagecolorallocate($img, mt_rand(140,190), mt_rand(140,190), mt_rand(140,190));
//使用*號作為干擾點
imagestring($img, mt_rand(1,5), mt_rand(0,$width), mt_rand(0,$height), '*', $dots_color);
}
//增加干擾線
for($j = 0;$j < 10;$j++)
{
//隨機線段顏色
$line_color = imagecolorallocate($img, mt_rand(80,130), mt_rand(80,130), mt_rand(80,130));
//隨機線段
imageline($img,mt_rand(0,$width),mt_rand(0,$height),mt_rand(0,$width),mt_rand(0,$height),$line_color);
}
4.將驗證碼放入圖片
$captcha=array(3,4,'a','i');//可以自己使用寫一個方法生成數組;
$length=sizeof($captcha);
for($i = 0;$i < $length;$i++){
//給每個字符分配不同顏色
$c_color = imagecolorallocate($img, mt_rand(0,60), mt_rand(0,60), mt_rand(0,60));
//增加字體空間、大小、角度顯示
imagettftext($img,mt_rand(15,25),mt_rand(-45,45),$width/($length+1)*($i+1),mt_rand(25,$height-25),$c_color,$fonts,$captcha[$i]);
}
5.保存圖片
imagejpeg($img,"test.jpg",100);
推薦:php視頻教程 php教程
總結
以上是生活随笔為你收集整理的php中如何将验证码放入页面,如何在php中生成验证码图片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php 函数命名 特殊字符,php 特殊
- 下一篇: JAVA入门级教学之(JAVA注释)