php 用gd库制作验证码不显示图片
写了一个生成验证码,但是在本地wampsever环境中不能显示图片
但我上传到服务器里,却可以显示。
本地的gd库是打开的
新手弄得一头雾水,求教!
<?php
require_once '../include.php';
function verifyImage($type=3,$length=4,$pixel=1,$line=1,$sess_name = "verify"){
//使用GD库制作验证码
//定义画布宽高
$width=80;
$height=30;
//创建画布
$image = imagecreatetruecolor ( $width, $height );
//定义画布中的颜色
$white = imagecolorallocate ( $image, 255, 255, 255 );
$black = imagecolorallocate ( $image, 0, 0, 0 );
//用填充矩形填充画布
imagefilledrectangle ( $image, 1, 1, $width - 2, $height - 2, $white );
//获取字符串
$chars=buildRandomString(3,4);
//传值验证
$_SESSION [$sess_name] = $chars;
$fontfiles=array("SIMYOU.TTF");
$color = imagecolorallocate ( $image, mt_rand ( 50, 90 ), mt_rand ( 80, 200 ), mt_rand ( 90, 180 ) );
//在画布中添加字符
for($i = 0; $i < $length; $i ++) {
$size = mt_rand ( 14, 18 );
$angle = mt_rand ( - 15, 15 );
$x = 5 + $i * $size;
$y = mt_rand ( 20, 26 );
$fontfile = '../fonts/' . $fontfiles [mt_rand ( 0, count ( $fontfiles ) - 1 )];
$text = substr ( $chars, $i, 1 );
imagettftext ( $image, $size, $angle, $x, $y, $black, $fontfile, $text );
}
//添加干扰元素 点
if ($pixel) {
for ($i=0; $i < 50; $i++) {
imagesetpixel($image, mt_rand(0,$width-1), mt_rand(0,$height-1), $color);
}
}
//添加干扰元素 线
if ($line) {
for ($i=0; $i < $line; $i++) {
imageline($image, mt_rand(0,$width-1), mt_rand(0,$height-1),mt_rand(0,$width-1), mt_rand(0,$height-1), $color);
}
}
//浏览器标示输出是图像
header ( "content-type:image/jpeg" );
//创建图像资源
imagejpeg ( $image );
//注销图像资源
imagedestroy($image);
}
verifyImage();
?>
修改型咸鱼小队
11 years, 10 months ago