php绘制图片失败,使用清除缓存ob_clean()可以解决。

在使用php创建图片时,无法正常生成图片

header("Content-type: image/png");
$img=imagecreatetruecolor(200,200);
imagepng($img);
imagedestroy($img);

出现的居然是这样的图片:
这里写图片描述
清除缓存后就能正常显示了,加入
ob_clean();

代码如下:

<?php ob_clean(); header("Content-type: image/png"); $img=imagecreatetruecolor(200,200); imagepng($img); imagedestroy($img); ?>

你可能感兴趣的:(PHP,图片,缓存)