Pro Photo HOME
Go Back   Pro Photo HOME > Professional Digital Workflow Discussion - Full Access for Premium Members > Photoshop and other Image Applications

Notices

Reply
 
LinkBack Thread Tools Display Modes
  #8  
Old 11-02-2005, 10:57 PM
**Do Not Delete**
Guest
 
Posts: n/a
Re: Creating a simple Watermark in PS

I am trying to create a simple watermark over a folder full of JPGs. But I need the FILE NAME to be the watermark. (The end result will be a CS2 PDF Presentation, and PDF Presentation changes the files names to PAGE NUMBERS. Thus I lose the file name of each image.

I have tried WEB GALLERY>Security/Watermark, but it does not seem to actually apply the FILE NAME watermark. I have read multiple questions on Adobe Forum about this problem too.

Does anyone know how to do this? I just want the JPG file name overprinted in white over the top of each image.

Thank you.

  


White Balance so easy, even our 5 year old can do it.- Melissa Strickland

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 11-02-2005, 11:51 PM
NorbertBissinger NorbertBissinger is offline
Basic Member
 
Join Date: Nov 2000
Location: New York City. USA
Posts: 1,837
NorbertBissinger 10
Re: Creating a simple Watermark in PS

This Script will do it.
Select the script fully and do a Edit-Copy to put it on the Clip Board. Do not alter the line structure.
Open Note Pad and past it into Note Pad.
Select for "Save As Type" All Files. Give it a Name: File Name would be OK
Now. and this is important. After the file name type .js (no space between Filename.
Just like this: File Name.js.
Save in: C:\Program Files\Adobe\Presets\Scripts. Photoshop must be CS or CS2 or 7 with a download of the scripting Plug In.
Photoshop musat be closed to do this.
You can change the Color and the size of the Text just overwrite the parameters. I have R255, G255,B255 which is white, and 20 for the size.
You can write an action and then Batch. Come back if you want to know how.
The script will be on the next post because it might not fit in this one.

White Balance so easy, even our 5 year old can do it.- Melissa Strickland

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 11-02-2005, 11:52 PM
NorbertBissinger NorbertBissinger is offline
Basic Member
 
Join Date: Nov 2000
Location: New York City. USA
Posts: 1,837
NorbertBissinger 10
Re: Creating a simple Watermark in PS

// this script is a variation of the script addTimeStamp.js that is installed with PS7


if ( documents.length > 0 )
{
var originalRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PERCENT;

try
{
var docRef = activeDocument;

// Now create a text layer at the front
var myLayerRef = docRef.artLayers.add();
myLayerRef.kind = LayerKind.TEXT;
myLayerRef.name = "Filename";

var myTextRef = myLayerRef.textItem;

di=(docRef.name).indexOf(".");

// fname = file name only
fname = (docRef.name).substr(0, di);

myTextRef.contents = fname;

// Set font size in Points
myTextRef.size =20;

//Set font - use GetFontName.js to get exact name

myTextRef.font = "Arial";

//Set text colour in RGB values

var newColor = new SolidColor();
newColor.rgb.red = 255;
newColor.rgb.green = 255;
newColor.rgb.blue = 255;
myTextRef.color = newColor;


// off set the text to be in the bottom left corner - percentages from left first, then from top.
myTextRef.position = new Array( 2, 99);
}
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;
}
else
{
alert( "You must have a document open to add the filename!" );
}

White Balance so easy, even our 5 year old can do it.- Melissa Strickland

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11  
Old 11-02-2005, 11:52 PM
JoeMikos JoeMikos is offline
Basic Member
 
Join Date: Jun 2003
Posts: 65
JoeMikos 10
Re: Creating a simple Watermark in PS

"drop watermark" from lajdesignsw.com and it's rather idiot proof. I know cuz i use it!

sweeeeeet


joe
p.s. norbert WTF is that! we're photographers...speak english or atleast fstops [img]/images/graemlins/wink.gif[/img]

White Balance so easy, even our 5 year old can do it.- Melissa Strickland

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12  
Old 11-03-2005, 12:09 AM
NorbertBissinger NorbertBissinger is offline
Basic Member
 
Join Date: Nov 2000
Location: New York City. USA
Posts: 1,837
NorbertBissinger 10
Re: Creating a simple Watermark in PS

This is way behond F stops. It is like the Circle of the least confusion which is seldom understood.
This is Photographic talk.
Putting the file name and other info directly on a picture is very often required and only a Script can do that.
One can do this for hundreds of images automatically while one takes more pictures or goes to lunch.

Here is a sample:
http://www.pixentral.com/show.php?pi...tZvcdkpODuGv50

White Balance so easy, even our 5 year old can do it.- Melissa Strickland

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13  
Old 11-03-2005, 12:11 AM
**Do Not Delete**
Guest
 
Posts: n/a
Re: Creating a simple Watermark in PS

Norbert and Joe,

Thanks. I'll try it in the morning. In a dream world, there would be a Script or Action that would add, say, an eighth of an inch, or twenty pixels, or whatever, in white, of Canvas Area, below each image, and then would type in the FILE NAME in that white area, so that the FileName did not invade and mess with the actual picture. Nothing nastier looking than a watermark.

Thank you.

PS. Why does that feature not work in CS2? The Web Gallery>Security>Watermark feature. The action runs, but no file name appears on top of the image. Is it a bug?

White Balance so easy, even our 5 year old can do it.- Melissa Strickland

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14  
Old 11-03-2005, 12:14 AM
NorbertBissinger NorbertBissinger is offline
Basic Member
 
Join Date: Nov 2000
Location: New York City. USA
Posts: 1,837
NorbertBissinger 10
Re: Creating a simple Watermark in PS

No problem at all to do this.
Give a few minutes and I will post a sample.

White Balance so easy, even our 5 year old can do it.- Melissa Strickland

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 01:21 AM.


ColorRight





Professional Photo Resources Atlanta

Photo Barn


Geo Visitors Map

Content Relevant URLs by vBSEO 3.1.0