如何使用 ImageMagick 调整大小?

发布于 2024-10-31 14:28:01 字数 26 浏览 0 评论 0原文

我需要创建远程 jpeg 图像的缩略图

I need to create a thumb image of a remote jpeg image

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

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

发布评论

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

评论(3

战皆罪 2024-11-07 14:28:01

这个问题比较笼统。有一个名为 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.

忘年祭陌 2024-11-07 14:28:01

尝试使用系统:

system("convert <pathToImageToResize> -resize 64x64  <outputPath>");

对于远程图片,您需要获取它,调整它的大小,然后提供该图像

try using system:

system("convert <pathToImageToResize> -resize 64x64  <outputPath>");

for a remote picture you would need to fetch it, resize it, and then provide that image

潜移默化 2024-11-07 14:28:01

它就像下载它一样简单,然后调用 -resize 东西:

copy("http://example.com/image.jpeg", "img1.jpeg");
exec("mogrify -resize 50x50 img1.jpeg");

注意文件权限等等。

It's as simple as downloading it, and then invoking the -resize thingy:

copy("http://example.com/image.jpeg", "img1.jpeg");
exec("mogrify -resize 50x50 img1.jpeg");

Take care with the file permissions and whatnot.

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