Command line batch image cropping tool

后端 未结 6 2103
执笔经年
执笔经年 2021-01-31 07:27

is there any lightweight command line batch image cropping tool(Linux or Windows) which can handle a variety of the formats ?

6条回答
  •  执念已碎
    2021-01-31 08:01

    Imagemagick's convert does the trick for me (and much more than cropping):

    convert -crop +100+10 in.jpg out.jpg
    

    crops 100 pixels off the left border, 10 pixels from the top.

    convert -crop -100+0 in.jpg out.jpg
    

    crops 100 pixels off the right, and so on. The Imagemagick website knows more:

    http://www.imagemagick.org/Usage/crop/#crop

提交回复
热议问题