PHP无法加载图像并显示它

时间:2017-06-26 11:03:50

标签: php image header content-type loadimage

我正在尝试创建一个php脚本来加载图像并根据$ _GET参数显示它。

我想稍后使用它将图片加载到我的移动应用程序(Android)中。

问题是我无法显示图像。我使用下面的代码:

header("Content-Type: image/jpeg");
readfile($path);

但是当我在firefox中打开页面时,我收到错误:

Image cannot be displayed because it contains errors.

更多的是我尝试了不同的方法,我可以在html代码中显示图像(我不想要这个 - 它需要在java android中删除标题 - 但它证明路径是正确的)

echo '<img src="data:image/jpeg;base64,'.base64_encode(file_get_contents($path) ).'"/>

我做错了什么?有任何想法吗? 提前谢谢。

0 个答案:

没有答案