PHP GD 来自不同服务器的重复图像

发布于 2024-09-09 08:04:36 字数 144 浏览 3 评论 0原文

我不知道该怎么做,我想知道是否有人聪明可以给我一个例子:)

我希望有人能够发布 png、jpg 或 bmp 图像 url,然后使用 PHP GD 复制图像包括宽度和高度。

有人能给我举个例子吗?我还喜欢它只支持 png、jpeg 和 bmp。

I don't know how to do this and I was wondering if someone smart could give me an example :)

I want someone to be able to post a png,jpg, or bmp image url and then id use PHP GD to duplicate the image including width and height.

Could someone give me an example of this? Also id like it to support only png, jpeg, and bmp.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

画离情绘悲伤 2024-09-16 08:04:36

我会在脚本中首先下载 URL(查看 PHP cURL),然后尝试使用 GD 读取文件。

http://php.net/manual/en/book.curl.php

http://php.net/manual/en/book.image.php

您可以在 URL 上执行简单的正则表达式(例如 /^.*\.(jpg|jpeg|png|gif)$/i),但 URL 并不总是代表类型你得到的文件。根据您的需要,最好先下载然后再提问。

I would, in the script, download the URL first (check out PHP cURL), and then attempt to read in the file using GD.

http://php.net/manual/en/book.curl.php

http://php.net/manual/en/book.image.php

You can do a simple regex (something like /^.*\.(jpg|jpeg|png|gif)$/i) on the URL, but URLs don't always represent the type of file you get. Depending on what you need, it might be better to download first and ask questions later.

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