cowasaki
TPer Emeritus
- Messages
- 19,708
- Name
- Darren
- Edit My Images
- Yes
Multi image sheets
I knocked up this quick script tonight to produce multiple images on a new document, you know like those ones you get out of the photo machines where you get 4 passport pictures and 1 larger picture!!
Basically you crop your image in the right PROPORTION then run the script.
The example will produce two passport photos and a double sized picture on a 6x4" document ready to be printed.
You can download the script HERE
Save the .js file into your photoshop script directory and run it as normal.
If you look at the script, which is very short, you will see 3 lines:
addnextpicture(5,55,70,90);
addnextpicture(5,5,35,45);
addnextpicture(45,5,35,45);
These dictate the size of the images place and their location so in the above example we have a 70mm by 90mm image placed at the location 5mm in and 55mm down then two 35mm by 45mm images placed at 5,5 and 45,5. When creating the list start with the largest pictures and work downwards as the quality will be reduced it you do not. This was produced for my use and this was not a problem for me but I decided to release it.
By changing this you can produce different sets of images and save these with different names such as "passport x 4"
The size of the new document is altered by the entry near the start:
ML_width = 100;
ML_height = 150;
This sets the paper size to 100mm by 150mm
I will be adding this to the Script Writer application for the next release but this is a totally stand alone script.
It should work with PSE versions 4+ and PS version CS2+.
I knocked up this quick script tonight to produce multiple images on a new document, you know like those ones you get out of the photo machines where you get 4 passport pictures and 1 larger picture!!
Basically you crop your image in the right PROPORTION then run the script.
The example will produce two passport photos and a double sized picture on a 6x4" document ready to be printed.
You can download the script HERE
Save the .js file into your photoshop script directory and run it as normal.
If you look at the script, which is very short, you will see 3 lines:
addnextpicture(5,55,70,90);
addnextpicture(5,5,35,45);
addnextpicture(45,5,35,45);
These dictate the size of the images place and their location so in the above example we have a 70mm by 90mm image placed at the location 5mm in and 55mm down then two 35mm by 45mm images placed at 5,5 and 45,5. When creating the list start with the largest pictures and work downwards as the quality will be reduced it you do not. This was produced for my use and this was not a problem for me but I decided to release it.
By changing this you can produce different sets of images and save these with different names such as "passport x 4"
The size of the new document is altered by the entry near the start:
ML_width = 100;
ML_height = 150;
This sets the paper size to 100mm by 150mm
I will be adding this to the Script Writer application for the next release but this is a totally stand alone script.
It should work with PSE versions 4+ and PS version CS2+.