Search found 3 matches

by jnewbrough
2016-05-06T06:21:01-07:00
Forum: Users
Topic: Cropping images into multiple equal Images
Replies: 4
Views: 2045

Re: Cropping images into multiple equal Images

It isn't pretty, but I got it.

FOR %G IN ("*.jpg") DO convert "%G" -crop 250x250+0+0 "output\%G"

FOR %G IN ("*.jpg") DO convert "%G" -crop 5x5@ +repage "output\%G"
by jnewbrough
2016-05-06T05:14:17-07:00
Forum: Users
Topic: Cropping images into multiple equal Images
Replies: 4
Views: 2045

Re: Cropping images into multiple equal Images

That almost works. It no longer gives me the small edge chips, but that is because it just re-sized the chips to take in the extra pixels. What I'm looking for is even 50 X 50 chips and just ignore the extras on the edges. FOR %G IN ("*.jpeg") DO convert "%G" -crop 5x5@ +repage "output\%G"
by jnewbrough
2016-05-06T05:03:30-07:00
Forum: Users
Topic: Cropping images into multiple equal Images
Replies: 4
Views: 2045

Cropping images into multiple equal Images

I have a folder full of hundreds of images and am trying to crop each jpeg into multiple equal sized images. I have tried this but end up with excess little chips from the edges. Each original image is 256 X 256 pixels and the goal is to crop these into 25 images that are 50 X 50 pixels. I keep ...