Crop multiple images For Dummies

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
robertojun
Posts: 2
Joined: 2016-01-13T07:02:57-07:00
Authentication code: 1151

Crop multiple images For Dummies

Post by robertojun »

Hey, first time using the program, I read in the internet that this program can crop multiples images and save them, I have a rare book and I wanna share with my friends in the college...
but I never used this program before (I have basic knowloge of C/C++)
I have 368 images (names: Callister 7ª edição (BRA)_imgs-0002; Callister 7ª edição (BRA)_imgs-0003; ...)
dimentions: 4267 x 3200
I have to crop this multiples images by half (vertical) so each file must have 2134 x 3200 (I think)
So, how I get started?
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Crop multiple images For Dummies

Post by snibgo »

convert in.ext -crop 2x1@ out.ext
snibgo's IM pages: im.snibgo.com
robertojun
Posts: 2
Joined: 2016-01-13T07:02:57-07:00
Authentication code: 1151

Re: Crop multiple images For Dummies

Post by robertojun »

snibgo wrote:convert in.ext -crop 2x1@ out.ext
Oh, Thank you!!
Post Reply