为什么我一输出中文就不能显示图片呢?
<?php
header("Content-Type:text/html; charset=utf-8");
header("Content-type: image/png");
//echo '创建一张图片';
$img=imagecreatetruecolor(200, 200);
$red=imagecolorallocate($img, 0x00, 0x00, 0x00);
imagefill($img, 0, 0, $red);
imagepng($img);
imagedestroy($img);