PHP拉取图像并显示

发布于 2024-07-10 18:41:18 字数 244 浏览 6 评论 0原文

我有一个 PHP 文件,我使用 mod rewrite 来创建 .jpg 扩展名。 我想从网址示例中获取图像

http://msn.com/lol.gif

获取数据,然后将其显示在带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏夜暖风 2024-07-17 18:41:18

如果你结合使用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.

倾`听者〃 2024-07-17 18:41:18

使用 php GD 库:

header('Content-type: image/jpeg');
$pic = imagecreatefromgif($url);
Imagejpeg($pic);
ImageDestroy($pic);

使用 Imagick 库:

header('Content-type: image/jpeg');
$image = new Imagick($url);
$image->setImageFormat( "jpg" );
echo $image;

using php GD library:

header('Content-type: image/jpeg');
$pic = imagecreatefromgif($url);
Imagejpeg($pic);
ImageDestroy($pic);

Using Imagick Library:

header('Content-type: image/jpeg');
$image = new Imagick($url);
$image->setImageFormat( "jpg" );
echo $image;
金橙橙 2024-07-17 18:41:18

根据您的需要(您需要操作图像吗?),您可以打开远程文件并将其输出到浏览器。

查看有关 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文