Close
jeddelagged said:
I'm in the process of sorting all my images into landscape and portrait for the sake of digital photoframes.

I found an applescript script that works perfectly, but balks when faced with 15,000 images at once. It works in 1,000 lot batches, however the only Mac I have access to is a work colleagues Mac Book Pro, and it's a hassle trying to do it this way.

Anybody know of a Win32 friendly method of being able to sort images by dimention ratio?
You can try to run it from terminal and one by one, so it won't be limited by the number like:

cd /path/to/your/pics/folder/ && find . -name '*' | xargs osascript applescriptname
not sure if I wrote that line correctly but I think it should work