Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Batch Watermarking? with action, script, automation ...?

Community Beginner ,
Nov 29, 2017 Nov 29, 2017

Copy link to clipboard

Copied

I have folders that contain hundreds of photos each.  Each photo has a unique name.  What is the fastest way to,

Put a watermark on each photo

Each watermark should be the name of the photo

Output to a JPEG

Is there a script or an action that I can set up to automate this?

Thank You so much!

Views

18.1K
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Nov 29, 2017 Nov 29, 2017

Copy link to clipboard

Copied

Here is link to install Watermark CC from Adobe Add-ons https://exchange.adobe.com/addons/products/12780

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Nov 29, 2017 Nov 29, 2017

Copy link to clipboard

Copied

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Nov 30, 2017 Nov 30, 2017

Copy link to clipboard

Copied

Thank you!  With these tools, can one make the text in the watermark, the name of the photo?  Keep in mind that each photo will have a different file name.  So for a folder with 100 photos, I would need 100 different watermarks, with the text in each watermark, the same text as the file name. 

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Aug 09, 2018 Aug 09, 2018

Copy link to clipboard

Copied

hi Charles,

I have the same problem. I need to process thousans of images. (larges)

I found two programs to do this process. Aoao Photo Watermark for Windows and Watermark Pro for Mac.

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 16, 2020 Mar 16, 2020

Copy link to clipboard

Copied

LATEST

Uncomment the one section to remove the file extension. Set the formatting as you want- position, font, size

 

#target photoshop

testText();

function testText(){
if(documents.length > 0){
var originalDialogMode = app.displayDialogs;
app.displayDialogs = DialogModes.ERROR;
var originalRulerUnits = preferences.rulerUnits;
preferences.rulerUnits = Units.PIXELS;
try{
var docRef = activeDocument;
var LayerRef = docRef.artLayers.add();
LayerRef.kind = LayerKind.TEXT;
var TextRef = LayerRef.textItem;
var fileNameNoExtension = docRef.name;
//uncomment this section to remove file extension
//~ fileNameNoExtension = fileNameNoExtension.split('.');
//~ if(fileNameNoExtension.length > 1){
//~ fileNameNoExtension.length--;
//~ }
//~ fileNameNoExtension = fileNameNoExtension.join('.');
//

TextRef.contents = fileNameNoExtension;

//change this to the formatting you want to use
TextRef.position = new Array(425, 1025);
preferences.rulerUnits = Units.POINTS;
TextRef.size = 42;
TextRef.useAutoLeading = false;
TextRef.leading = 42;
TextRef.font = 'Calibri-Bold';
TextRef.justification = Justification.CENTER;
TextRef.autoKerning = AutoKernType.METRICS;
//

}
catch(e){
preferences.rulerUnits = originalRulerUnits;
app.displayDialogs = originalDialogMode;
return;
}
preferences.rulerUnits = originalRulerUnits;
app.displayDialogs = originalDialogMode;
}
else{
alert('You must have a document open to run this script.');
return;
}
}

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines