标签: imagemagick
我从不同身高的网站上截取了100张截图。无论图像的高度如何,我都希望从顶部裁剪图像的标题为50px。
convert -crop autoxauto+0x50 image-input.png image-output.png
答案 0 :(得分:2)
如果您从这张图片开始,其中两个条形图都是50像素高:
你可能意味着:
convert start.png -crop x50+0+0 top.png
或者:
convert start.png -crop x50+0+50 bottom.png
答案 1 :(得分:0)
我同意@Mark的回答,但我找到了一个更简单的解决方案:
convert image-input.png -chop 0x50 image-output.png