convert -crop

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
todor
Posts: 1
Joined: 2015-03-25T10:30:32-07:00
Authentication code: 6789

convert -crop

Post by todor »

hi

i try to do next

convert MyFile.jpg -crop 184x200+0+74 -crop 79x200+0+0 rezult.jpg

if i done step by step - all is fine
but when i do two steps in one execution
resulted image has dimension 79*126
my understanding is - that second crop will be crop from result of first crop
myFile.jpg is big ( like 500*500 )
after first crop - result should be image 184*200
after second crop - 79*200
but actually i get 79*126 ... it like second offset doesnt works

please advice what to do :)
i want to do 2-3-4 commands in one execution to avoid lost of quality
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: convert -crop

Post by fmw42 »

add +repage after each crop
Post Reply