how to cutting an img from right-bottom?
Posted: 2011-08-15T03:07:26-07:00
I can not find any parameter to cut an img from the reverse direction from
http://www.imagemagick.org/Usage/crop/
how to do that?
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=19296
Code: Select all
convert input.jpg -gravity southeast -crop 30x30+0+0 +repage output.jpg
it works ,thank you very much!Bonzo wrote:Try:Code: Select all
convert input.jpg -gravity southeast -crop 30x30+0+0 +repage output.jpg