使用 Mogrify 执行调整大小和填充画布

发布于 2024-10-22 00:15:26 字数 405 浏览 1 评论 0原文

imagemagick 网站在此页面上有一个演示: http://www.imagemagick.org/Usage/ resize/#resize

我想执行本例中的操作:

convert logo: -resize 80x80\> \
          -size 80x80 xc:blue +swap -gravity center  -composite \
          space_resize.jpg

但是对于大量文件。我认为正确的工具是 mogrify,但它不知道 +swap 或 xc:blue 标志。

建议?

The imagemagick site has a demo on this page: http://www.imagemagick.org/Usage/resize/#resize

I want to perform the action in this example:

convert logo: -resize 80x80\> \
          -size 80x80 xc:blue +swap -gravity center  -composite \
          space_resize.jpg

But for a large number of files. I think the right tool is mogrify, but it does not know the +swap or xc:blue flags.

Advice?

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

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

发布评论

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

评论(3

我很坚强 2024-10-29 00:15:26

我能够通过使用以下内容来完成上述任务:

mogrify -resize 300x300 *.jpg
mogrify -extent 300x300 -gravity Center -fill white *.jpg

这将使图像的最大尺寸为 300 像素。然后,它将在较短的尺寸上将画布填充为 300 像素,并用白色填充空白区域。

I was able to accomplish the above by using the following:

mogrify -resize 300x300 *.jpg
mogrify -extent 300x300 -gravity Center -fill white *.jpg

This will make the largest dimension of the images to 300 pixels. It will then fill the canvas on the shorter dimension to 300 pixels and fill in the empty space with white.

江心雾 2024-10-29 00:15:26

对我来说,你的解决方案只是从我的大图像中剪辑 300x300 部分。

下一个命令可以正常工作,在图像周围添加空白:

mogrify -extent 640x640 -gravity Center -fill white *.jpg[640x640]

For me your solution just clips 300x300 portion from my big image.

Next command works correctly, adding white space around image:

mogrify -extent 640x640 -gravity Center -fill white *.jpg[640x640]
挽手叙旧 2024-10-29 00:15:26

为了扩展@akoumjian的分辨率,我只是建议使用

-transparent white

参数来使图像上的所有白色部分变得透明。非常适合制作透明 PNG

to extend @akoumjian's resolution I just suggest to use

-transparent white

parameter to get transparent all what was white on the image. It's great for making transparent PNGs

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