我正在尝试创建一个动态图像生成器,它也可以缓存图像。
一切都很完美,除了由于某些原因我保存图像并尝试同时显示图像时,它会显示一个损坏的图像图标(如: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 echoing jpeg image fails, but writing same image to file works great. Why?
听起来很相似,但删除尾随的空格仍然没有改变正在发生的事情。其他线程提到它可能是在标题之前发送的其他内容的问题,但在此文件中没有类似的内容。
关于可能出错的任何想法?没有记录错误,我没有想法。
谢谢!
-Zach
修改
有人解释说我正在摧毁我错过的形象。我最终使用了这个:
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;
答案 0 :(得分:5)
header("Content-type: image/png"); // without ;
而且,你正在摧毁你的形象,再次阅读文件
readfile($fullFileName);
因为imagepng($my_img, $fullFileName);
只能保存它。
答案 1 :(得分:3)
从手册imagepng
输出或保存来自给定图像的PNG图像
注意“或”。尝试拨打imagepng
两次电话。一次调用将其保存到文件,一次调用没有filename参数将图像输出到浏览器。
答案 2 :(得分:0)
尝试使用文本编辑器打开图像。 关闭error_reporting。 告诉你破碎的图像。