如何使用 ImageMagick 调整大小?
我需要创建远程 jpeg 图像的缩略图
I need to create a thumb image of a remote jpeg image
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要创建远程 jpeg 图像的缩略图
I need to create a thumb image of a remote jpeg image
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这个问题比较笼统。有一个名为 phpThumb 的 PHP 工具,可以轻松地处理本地和远程图像的大小调整和缓存。一旦设置和配置完毕,它就是一个很棒的工具。
The question is rather general. There is a PHP tool called phpThumb that comfortably takes care of resizing and caching local and remote images. Once set up and configured, it is a great tool.
尝试使用系统:
对于远程图片,您需要获取它,调整它的大小,然后提供该图像
try using system:
for a remote picture you would need to fetch it, resize it, and then provide that image
它就像下载它一样简单,然后调用 -resize 东西:
注意文件权限等等。
It's as simple as downloading it, and then invoking the -resize thingy:
Take care with the file permissions and whatnot.