Crop multiple images using imagemagick through command line
I love photoshop. But even with actions, modifying 1000 images can be intensive with that behemoth of an application.
Have you tried imagemagick on command line? It is fun! Well for me…
With these two commands I cropped first the right side (east) of an image by 15px. And then left side (west).
1 2 |
mogrify -format png -gravity east -chop 15x0 *.png mogrify -format png -gravity west -chop 15x0 *.png |
And it runs recursively so be sure to run it inside correct directory.
Leave a Reply