Forum Moderators: not2easy
Thanks,
- Ryan
Just me, but I would separate my landscape and portraits manually into two different folders, and then run one of two separate actions, one each for landscape and portrait. Action1 would batch the "Landscape"folder, and Action2 would batch the "Portrait" folder.
In addition:
I have a script that uses the GD library with PHP to accomplish the same task, because I can tell it:
if ($width > $height)
{
$var = "landscape";
}
if ($width <= $height)
{
$var = "portrait";
}
So this may also be an option, or like I said, you could write a plugin for photoshop that does the same thing with AppleScript if you use Mac. I wouldn't know how to do this on a PC, sorry :0P
-- Zak
its not something ive actually used myself, but this search [google.com] should get you started.