首页 > 代码库 > DEDE验证码不显示极端

DEDE验证码不显示极端

我也遇到相同的问题,在大侠的帮助下解决,,,就是在include/vdimgck.php文件的靠后位置,加上这个函数:ob_clean();两个地方都加上,按照下面的,,
代码如下:
header("Pragma:no-cache\r\n");
header("Cache-Control:no-cache\r\n");
header("Expires:0\r\n");

//输出特定类型的图片格式,优先级为 gif -> jpg ->png
//dump(function_exists("imagejpeg"));

if(function_exists("imagejpeg"))
{
ob_clean();////////////这个地方加上
header("content-type:image/jpeg\r\n");
imagejpeg($im);
}
else
{
ob_clean();////////////这个地方加上
header("content-type:image/png\r\n");
imagepng($im);
}
imagedestroy($im);

exit();
}
?>