1

在渲染图像文件时我有哪些选择?假设我有一个保存在 foo/bar.png

目前我知道我可以使用readfile()或更好,X-Sendfile(我在 Apache 上)。还有哪些比使用更好的方法readfile()呢?

我想将图像输出到浏览器(Content-Type: image/png)

4

1 回答 1

5

最好的解决方案是让您的网络服务器 (Apache) 自己提供内容。如果必须改用 PHP,您只需确保首先将 Content-Type 设置为适当的值:

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

然后用于readfile()发送图像本身。

于 2012-08-17T01:26:41.763 回答