test.PHP
PHP;">
PHP
header('Content-Type:image/jpeg');
$img = imagecreatetruecolor(100,40);
$black = imagecolorallocate($img,0x00,0x00);
$green = imagecolorallocate($img,0xFF,0x00);
$white = imagecolorallocate($img,0xFF);
imagefill($img,$white); //生成随机的验证码
$code = '';
for($i = 0; $i < 4; $i++) { $code .= rand(0,9); }
imagestring($img,5,10,$code,$black);
//加入噪点干扰
for($i=0;$i<50;$i++) {
imagesetpixel($img,rand(0,100),$black);
imagesetpixel($img,$green);
} //输出验证码 header("content-type: image/png");
imagepng($img);
imagedestroy($img);
?>
这是点击验证码或看不清之后可实现局部刷新验证码
test2.PHP
PHP;">
如下图所示:
总结
以上所述是小编给大家介绍的PHP使用GD库制作验证码的方法(点击验证码或看不清会刷新验证码),希望对大家有所帮助。程序员遇到问题都会上(编程之家jb51.cc)查找问题解答方法!如果觉得站点还不错,随手转发给程序员朋友一下!
原文链接:https://www.f2er.com/php/16962.html