For those who just want a copyrightstamp:
Script begins here -
// copyright stamp
if ( documents.length > 0 );
{
var originalRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PERCENT;
try
{
var docRef = activeDocument;
// Create a text layer in Photoshop
var myLayerRef = docRef.artLayers.add();
myLayerRef.kind = LayerKind.TEXT;
myLayerRef.name = "CopyRight";
var myTextRef = myLayerRef.textItem;
//
Change the text to your own between the quotes.
var CopyRightText = "©
JOPEL 2005";
// Set font size in Points
myTextRef.size = 48;
//Set font - use GetFontName.js to get exact name
myTextRef.font = "Arial";
//Set text colour in RGB values
var yellow = new SolidColor();
yellow.rgb.red = 255, yellow.rgb.green = 255, yellow.rgb.blue = 0;
myTextRef.color = yellow;
// place the copyright text in the bottom left corner - percentages from left first, then from top.
myTextRef.position = new Array( 2, 98);
// Set the Blend Mode of the Text Layer.
myLayerRef.blendMode = BlendMode.NORMAL;
// select opacity in percentage
myLayerRef.opacity = 20;
myTextRef.contents = CopyRightText;
}
catch( e )
{
// An error occurred. Restore ruler units, then propagate the error back
// to the user
preferences.rulerUnits = originalRulerUnits;
throw e;
}
// Everything went Ok. Restore ruler units
preferences.rulerUnits = originalRulerUnits;
}
Script End Here
Copy this script to the notepad > save as > copyrightstamp.js > Save as type: Text Documents (*.txt) > Encoding: Unicode
Close PS if it is activated.
Save the copyright.js into > C: > Program Files > Adobe > Photoshop CS > Presets > Scripts
To run the script > File > Scripts > copyright
This works best with 400 x 600
Hope you find this helpful.