我正在尝试创建一个还缓存图像的动态图像生成器。
一切正常,除了出于某种原因,当我保存图像并尝试同时显示它时,它显示一个损坏的图像图标(如:http ://cl.ly/image/3K1f0R0n1R0U )。
代码示例:
// some string parsing junk happens up here, but removing that didn't change
// what I've been having a problem with
header("Content-type: image/png;");
if(file_exists($fullFileName)){ // serve the file if it already exists
ob_clean();
flush();
readfile($fullFileName);
exit;
} else { // create the file if it doesn't exist
$my_img = imagecreate(200, 80);
$background = imagecolorallocatealpha($my_img, 0, 0, 0, 127);
$line_colour = imagecolorallocatealpha($my_img, $color["r"], $color["g"], $color["b"], $color["a"]);
imagesetthickness($my_img, 1);
imageline($my_img, 30, 45, 165, 45, $line_colour);
//////////////////////////////////////////
// the line that's causing my troubles: //
//////////////////////////////////////////
imagepng($my_img, $fullFileName);
imagecolordeallocate($line_color);
imagecolordeallocate($background);
imagedestroy($my_img);
}
因此,图像创建得很好,保存得很好,并且在我刷新页面时完全按照我想要的方式显示(因为它会抓取保存的文件)。
如果我将上面那条该死的线切换为:
imagepng($my_img);
然后图像显示得很好,但它没有保存(因为我没有告诉它)。
我以为这个话题:
PHP 回显 jpeg 图像失败,但将相同的图像写入文件效果很好。为什么?
听起来很相似,但删除尾随空格仍然没有改变正在发生的事情。其他线程提到它可能是在标题之前发送其他内容的问题,但在这个文件中没有类似的东西。
关于可能出现问题的任何想法?没有记录错误,我没有想法。
谢谢!
-扎克
编辑:
有人解释说我正在破坏我的形象,我错过了。我最终使用了这个:
header("Content-type: image/png");
if(!file_exists($fullFileName)) {
$my_img = imagecreate($dashWidth + $dashSpace, $height);
$background = imagecolorallocatealpha($my_img, 0, 0, 0, 127);
$line_colour = imagecolorallocatealpha($my_img, $color["r"], $color["g"], $color["b"], $color["a"]);
imagesetthickness($my_img, 1);
imageline($my_img, 0, $height-1, $dashWidth-1, $height-1, $line_colour);
imagepng($my_img, $fullFileName);
imagecolordeallocate($my_img, $line_color);
imagecolordeallocate($my_img, $background);
}
ob_clean();
flush();
readfile($fullFileName);
exit;