PHP拉取图像并显示
我有一个 PHP 文件,我使用 mod rewrite 来创建 .jpg 扩展名。 我想从网址示例中获取图像
获取数据,然后将其显示在带有 jpeg 标题的 .jpg 中,因此对于用户而言,它是一个普通图像。 这可能吗?如果可以的话,有人可以给我一些指示吗?
I have a PHP file which I have used mod rewrite to make a .jpg extension. I want to grab an image from a url
example: http://msn.com/lol.gif
take the data and then display it in my .jpg with jpeg headers, so as far as the user is concerned it is a normal image. Is this possible and if so can anyone give me some pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你结合使用curl和PHP的图像操作方法,你可以了解在这里,将带您找到您正在寻找的内容。
If you use a combination of curl and PHP's image manipulation methods, which you can learn about here, will get you to what you are looking for.
使用 php GD 库:
使用 Imagick 库:
using php GD library:
Using Imagick Library:
根据您的需要(您需要操作图像吗?),您可以打开远程文件并将其输出到浏览器。
查看有关 readfile 函数和 http 包装器。
Depending on you needs (do you need to manipulate the image?), you can just open the remote file and output it to the browser.
Check out the documentation on the readfile function and the http wrapper.