I am looking for a script that would open a given number of images with different aspect ratios and layout them all in a single document like the flickr gallery. Something as seen in this page: http://martin-oehm.de/data/layout.html
Is there any script/plugin out there that can do this? The purpose is just to create a reference file with all the images instead of having several images floating around.
Thank you
The fact that you have had no answers in 10 weeks should tell you that Photoshop is maybe not the best/easiest place to do this.... so, I made the following script that does it pretty well outside of Photoshop.
It assumes you have OSX or Linux to run a
bash
script and it usesImageMagick
to actually do the image processing.Depending on the files in your input directory (obviously), it produces output like this:
with debug information in your Terminal window as it goes like this:
Upon reflection, the output could maybe be improved by reversing odd-numbered rows so that the largest image on each line is on the left one time and on the right the next time - it is a simple change but I don't want to over-complicate the code. Basically, you would reverse the order of the array
indices[]
every second time you fall out of the row-assembling loop.Here are some maybe useful links:
Google+ algorithm
flickr algorithm in jQuery
I presume Photoshop's built-in
File
->Automate
->Contact Sheet II
is inadequate for your purposes...