使用readfile加载时,为什么我的图像显示不正确

时间:2014-04-02 09:12:48

标签: php file-get-contents readfile

我正在尝试使用其文件路径读取缩略图。

$thumb = "/location/of/image";

$getInfo = getimagesize($thumb);
header('Content-type: ' . $getInfo['mime']);
readfile($thumb);

结果是图像错误图标。

到目前为止,我已经尝试过了;

  • 检查文件是否存在

var_dump(file_exists($thumb));

结果:

bool(true)
  • 检查getInfo以确保它是图像:

    的var_dump($的getInfo);

结果:

array(7) {
  [0]=>
  int(100)
  [1]=>
  int(94)
  [2]=>
  int(2)
  [3]=>
  string(23) "width="100" height="94""
  ["bits"]=>
  int(8)
  ["channels"]=>
  int(3)
  ["mime"]=>
  string(10) "image/jpeg"

}

似乎是正确的(大小mime类型等)

。使用file_get_contents($ thumb)而不是file_read(一个完整的覆盖面,但我已经用完了想法)。

  • 我检查了它正在阅读的文件,我可以毫无问题地下载和查看图像,如果我直接从浏览器调用文件,图像显示正常。所以它看起来不像

  • 强制下载文件而不是显示:

    标题("内容类型:application / force-download");

    我的任何图片编辑器/视图或浏览器都无法识别生成的文件。一系列错误,来自"不完整"到"无法识别的格式"结果,即使我明确地将下载文件名设置为" thumb.jpg"。

我没有想法!有没有人提出任何其他建议如何调试这个问题?

提前感谢您的建议:)

1 个答案:

答案 0 :(得分:5)

你可以试试这个:

$thumb = "/location/of/image";

$getInfo = getimagesize($thumb);

header('Content-type: ' . $getInfo['mime']);

ob_clean();

flush();

readfile($thumb);

在打开php标签之前可能会有一些空格。