PHP GD 来自不同服务器的重复图像
我不知道该怎么做,我想知道是否有人聪明可以给我一个例子:)
我希望有人能够发布 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会在脚本中首先下载 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.