猿问

在wamp怎么使用这段代码实现图形验证码?

为什么这段代码在wamp中使用不了 生成图形验证码呢

<?php
$img = imagecreatetruecolor(100, 40);
$black = imagecolorallocate($img, 0x00, 0x00, 0x00);
$green = imagecolorallocate($img, 0x00, 0xFF, 0x00);
$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
imagefill($img,0,0,$white);
//生成随机的验证码
$code = '';
for($i = 0; $i < 4; $i++) {
    $code .= rand(0, 9);
}
imagestring($img, 5, 10, 10, $code, $black);
//加入噪点干扰
for($i=0;$i<50;$i++) {
  imagesetpixel($img, rand(0, 100) , rand(0, 100) , $black); 
  imagesetpixel($img, rand(0, 100) , rand(0, 100) , $green);
}
//输出验证码
header("content-type: image/png");
imagepng($img);
imagedestroy($img);


qq_desperado_0
浏览 1602回答 4
4回答

柠檬酸钠

楼主把倒数三行(19-21)注释掉看看错误提示

qq_大寒_2

不是把,我这边可以,你看看gd库有没有开启。还有你这验证码也太简单了把?会存在安全隐患的
随时随地看视频慕课网APP
我要回答