1

我正在尝试创建一个还缓存图像的动态图像生成器。

一切正常,除了出于某种原因,当我保存图像并尝试同时显示它时,它显示一个损坏的图像图标(如: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;
4

3 回答 3

5

你的意思是

header("Content-type: image/png"); // without ;

而且,你正在破坏你的形象,再次阅读文件

readfile($fullFileName);

因为imagepng($my_img, $fullFileName);只保存它。

于 2012-08-17T18:48:23.510 回答
3

从说明书来看,imagepng

从给定图像输出保存 PNG 图像

注意“或”。尝试两次调用imagepng. 一次调用将其保存到文件,一次调用不带文件名参数将图像输出到浏览器。

于 2012-08-17T18:41:37.043 回答
0

尝试使用文本编辑器打开图像。关闭 error_reporting。给你看破碎的形象。

于 2012-08-17T18:45:49.387 回答