Order of Operations
Posted: 2011-08-23T09:12:58-07:00
how do I know what order ImageMagick will perform the tasks? I would like to resize an image, then crop it to make a thumb and make it a jpg.
So will ImageMagick perform the tasks in the order that was given to it, or will it perform the tasks in any order it chooses? What I need is for it to resize first, and crop second.
Will the above do just that?
So will ImageMagick perform the tasks in the order that was given to it, or will it perform the tasks in any order it chooses? What I need is for it to resize first, and crop second.
Code: Select all
convert /home/ryannaddy/img1.gmserver.net/inGame/original/Starcraft-II1.jpg -resize 120 -crop 120x76+0+0 /home/ryannaddy/img1.gmserver.net/inGame/102x/Starcraft-II1.jpg