使用 Mogrify 执行调整大小和填充画布
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我能够通过使用以下内容来完成上述任务:
这将使图像的最大尺寸为 300 像素。然后,它将在较短的尺寸上将画布填充为 300 像素,并用白色填充空白区域。
I was able to accomplish the above by using the following:
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.
对我来说,你的解决方案只是从我的大图像中剪辑 300x300 部分。
下一个命令可以正常工作,在图像周围添加空白:
For me your solution just clips 300x300 portion from my big image.
Next command works correctly, adding white space around image:
为了扩展@akoumjian的分辨率,我只是建议使用
参数来使图像上的所有白色部分变得透明。非常适合制作透明 PNG
to extend @akoumjian's resolution I just suggest to use
parameter to get transparent all what was white on the image. It's great for making transparent PNGs