How to Add Watermarks to PDF Files

A complete guide to adding text and image watermarks in Adobe Acrobat — appearance settings, page ranges, reusable configurations, programmatic watermarking, and the difference between watermarks and backgrounds.

← Back to Blog

What Are PDF Watermarks and When Are They Used?

A watermark in a PDF is a text or image element placed on top of or beneath the page content. It appears on every page (or a specified range of pages) and is typically used to convey status, ownership, or intended use of the document.

Common watermark use cases include:

  • DRAFT: Applied to documents in review to prevent premature distribution or to ensure recipients understand the content is not final.
  • CONFIDENTIAL: Applied to sensitive documents to remind recipients of their handling obligations.
  • COPY: Used to distinguish printed or distributed copies from master originals.
  • Company logo or branding: Applied as a semi-transparent image watermark to assert ownership or reinforce corporate identity across shared documents.
  • FOR REVIEW ONLY / NOT FOR DISTRIBUTION: Common in publishing, legal, and pre-release workflows.

Watermarks are distinct from stamps (which are annotations that can be removed individually) and from PDF security (which controls permissions). A watermark placed using Acrobat's watermark feature is embedded into the page content and requires deliberate removal — it is not a separate annotation layer.

Adding a Watermark in Acrobat

The watermark tool in modern versions of Acrobat Pro is accessed as follows:

  1. Open the PDF in Acrobat Pro.
  2. Go to Tools > Edit PDF.
  3. In the Edit PDF toolbar, click Watermark and select Add.

The Add Watermark dialog opens, presenting all configuration options for the watermark.

Text Watermarks

To add a text watermark, ensure the Text radio button is selected in the Source section of the dialog. Enter the watermark text — for example, DRAFT or CONFIDENTIAL.

Font and Size

Set the font, font size, and text colour using the controls below the text input. For a classic watermark appearance, a large font size (60–120pt depending on page size) in a grey or light colour works well. Arial, Helvetica, and Times New Roman are commonly used because they are universally available and legible at any size.

Colour

Click the colour swatch to open the colour picker. A medium grey (such as RGB 150/150/150) at 30–50% opacity creates a subtle but clearly visible watermark that does not obscure the underlying content. For documents where maximum visibility matters — such as CONFIDENTIAL markings — a more saturated colour or higher opacity may be appropriate.

Image Watermarks

To add an image watermark (such as a company logo), select the File radio button in the Source section and click Browse to select an image file. Acrobat accepts PDF, JPEG, and PNG files as watermark images.

PNG files with a transparent background are ideal for logo watermarks, as the transparency is preserved when the image is composited over the page content. If using a JPEG, you can control the visual integration using the opacity setting.

Use the Absolute Scale or Scale relative to target page options to control the size of the image watermark. Setting the scale relative to the target page ensures the watermark proportions remain consistent if the PDF contains mixed page sizes.

Positioning: Above vs Below Content

The Appearance section includes a critical option: whether to place the watermark above or below the existing page content.

  • Appear Behind Page Content: The watermark is placed beneath the existing page content. Text and images on the page are rendered on top of the watermark. This is the correct choice for image watermarks like logos, and for text watermarks where you want the document content to remain fully readable.
  • Appear On Top of Page: The watermark is placed over the existing page content. At lower opacity settings this creates a clear overlay effect. At full opacity, the watermark may obscure the content beneath it.

For most practical purposes — DRAFT, CONFIDENTIAL, or logo watermarks — placing the watermark behind page content with a low-to-medium opacity produces the most professional result.

Opacity and Rotation

The Opacity slider controls how transparent the watermark is. 100% opacity is fully opaque; lower values allow the page content to show through. A setting of 20–40% is typical for diagonal text watermarks on printed documents. For screen-viewed documents, slightly higher opacity (30–50%) may be needed to ensure the watermark remains clearly visible on bright displays.

The Rotation field sets the angle of the watermark. A diagonal watermark at 45 degrees is a widely recognised convention. Enter a value between -90 and 90 degrees — negative values rotate anti-clockwise, positive values clockwise.

Page Range Options

By default, Acrobat applies the watermark to all pages. The Page Range section gives you finer control:

  • All Pages: Applies the watermark to every page in the document.
  • Pages from [X] to [Y]: Restricts the watermark to a specific page range.
  • Subset: Further filter to All Pages in Range, Odd Pages Only, or Even Pages Only — useful for applying different watermarks to recto and verso pages in a print document.

For documents where the cover page or a title page should not carry the watermark, use a page range starting from page 2.

Appearance Based on Page Size

If the PDF contains pages of varying sizes — a common situation in documents that mix letter, A4, and legal page sizes — you can use the Scale relative to target page option to ensure the watermark is sized proportionally to each page rather than being a fixed size that may look too large on smaller pages or too small on larger ones.

Click the Appearance options link within the dialog to access the Print Only option, which causes the watermark to appear in printed output but not in the on-screen display of the PDF. Conversely, you can set a watermark to be screen-only by deselecting the print option.

Saving and Reusing Watermark Configurations

If you apply the same watermark repeatedly — for example, a DRAFT marking for all documents under review — saving the configuration avoids having to reconfigure it each time.

  1. Configure all watermark settings as required.
  2. Click Save Settings (at the top of the Add Watermark dialog).
  3. Enter a descriptive name — for example, DRAFT - 45deg Grey 30%.
  4. Click OK to save.

Saved configurations appear in the saved settings dropdown at the top of the dialog and can be selected and applied immediately on subsequent uses.

Saved watermark configurations can also be incorporated into Action Wizard actions for batch watermarking across multiple files. This is useful for applying a CONFIDENTIAL watermark to an entire folder of documents in a single operation.

Updating and Removing Watermarks

To update an existing watermark, go to Tools > Edit PDF > Watermark > Update. This opens the Add Watermark dialog with the current watermark settings pre-populated, allowing you to change any settings and re-apply.

To remove a watermark, go to Tools > Edit PDF > Watermark > Remove. Acrobat removes all watermarks added via the Watermark feature from the document. Note that watermarks added programmatically or embedded as part of the original page content (rather than via the Watermark tool) may not be removed by this method.

Watermarks vs Background Images

Acrobat has a separate Background feature (accessible via Tools > Edit PDF > Background > Add/Update/Remove) that is distinct from the watermark feature. The key differences are:

  • A background is always placed behind page content. It cannot be placed on top of content.
  • Backgrounds are commonly used to add a coloured or textured background, or a full-page watermark-style image that sits entirely beneath the text layer.
  • The same positioning, opacity, rotation, and page range options are available in both the Watermark and Background dialogs.
  • A document can have both a background and a watermark applied simultaneously.

In practice, for a standard diagonal "DRAFT" or "CONFIDENTIAL" text overlay, the Watermark feature with the Appear On Top of Page setting at reduced opacity is the conventional approach. For a logo that should always appear behind text, use either a watermark set to Appear Behind Page Content, or the Background feature.

Programmatic Watermarks Using Acrobat JavaScript

For automated workflows, watermarks can be added programmatically using Acrobat JavaScript. The addWatermarkFromText() method provides direct control over all watermark parameters from script.

// Add a diagonal "CONFIDENTIAL" text watermark to all pages
this.addWatermarkFromText({
  cText: "CONFIDENTIAL",
  nTextAlign: app.constants.align.center,
  cFont: "Arial",
  nFontSize: 80,
  aColor: color.gray,       // Grey colour
  nOpacity: 0.3,             // 30% opacity
  nRotation: 45,             // 45 degree diagonal
  nHorizAlign: app.constants.align.center,
  nVertAlign: app.constants.align.center,
  bOnTop: false,             // Behind page content
  bPrint: true,
  bSaveAs: false
});

To apply a watermark based on a document property — for example, stamping the document's author name — you can read the document metadata and incorporate it into the watermark text:

// Watermark with document author name
var authorName = this.info.Author || "Unknown";
this.addWatermarkFromText({
  cText: authorName,
  nFontSize: 40,
  aColor: color.blue,
  nOpacity: 0.2,
  nRotation: 0,
  nHorizAlign: app.constants.align.right,
  nVertAlign: app.constants.align.bottom,
  bOnTop: true,
  bPrint: true
});

For image watermarks, use addWatermarkFromFile(), which accepts a path to a PDF, JPEG, or PNG file. As with other file-system operations, trusted context may be required depending on how the script is executed.

Need Automated Stamping and Watermarking at Scale?

Mapsoft's Acrobat plugins and custom development services help organisations apply stamps, watermarks, and document markings across large document collections. View our products or talk to us.