我以为是gd2库没有打开,但用 phpinfo查看了,发现打开了
解决方法
加在header输出之前:
ob_clean(); //关键代码,防止出现'图像因其本身有错无法显示'的问题。
header("Content-type:image/jpeg");
例子:
private function outPut() {
ob_clean(); //关键代码,防止出现'图像因其本身有错无法显示'的问题。
header('Content-type:image/png');
imagepng($this->img);
imagedestroy($this->img);
}