How to split images in a folder into 2x2 pages

Do you have a lot of images from AI in a 2x2 grid? Do you want to separate them into singles, but it's just so time consuming? Fear not, with imagemagick you can do it in one line, like so:

 

find . -maxdepth 1 -iname '*png' -exec \
 convert {} -crop 2x2@ {}_%d.jpg \;
Please login to post a comment.