如何使用ImageMagick在不知道图像高度的情况下裁剪图像

时间:2017-01-30 11:15:17

标签: imagemagick

我从不同身高的网站上截取了100张截图。无论图像的高度如何,我都希望从顶部裁剪图像的标题为50px。

convert -crop autoxauto+0x50 image-input.png image-output.png

2 个答案:

答案 0 :(得分:2)

如果您从这张图片开始,其中两个条形图都是50像素高:

enter image description here

你可能意味着:

convert start.png -crop x50+0+0 top.png

enter image description here

或者:

convert start.png -crop x50+0+50 bottom.png

enter image description here

答案 1 :(得分:0)

我同意@Mark的回答,但我找到了一个更简单的解决方案:

convert image-input.png -chop 0x50 image-output.png