Watermarks are one of those PDF features that seem simple until you actually need one. You have a contract you want stamped "DRAFT." A portfolio you want branded with your studio logo. A confidential report that needs a visible reminder on every page that it shouldn't be shared. The concept is straightforward — put text or an image behind (or on top of) every page — but the execution varies wildly depending on what tool you use and what you're trying to achieve.
This guide covers the real use cases for PDF watermarks, the different approaches to adding them, positioning and styling decisions that matter, and the common mistakes that make watermarks either invisible or obnoxious.
Why watermark a PDF
Watermarks serve several distinct purposes, and understanding yours determines how you should configure it.
Draft and status markers
The most common use case. You're circulating a document that isn't final — a contract awaiting signatures, a report pending review, a proposal still in negotiation. A diagonal "DRAFT" watermark across every page makes the document's status unmistakable. Without it, someone downstream might mistake a preliminary version for the final one and act on it. This happens more than you'd think — legal and compliance teams push for draft watermarks specifically because they've seen the consequences of someone filing, signing, or forwarding an unfinished document.
Other status markers serve similar purposes: "CONFIDENTIAL," "FOR REVIEW ONLY," "SAMPLE," "NOT FOR DISTRIBUTION." These aren't security measures — anyone can remove a watermark with the right tools. They're social signals. They communicate intent and set expectations about how the document should be handled.
Branding and ownership
Photographers, designers, and agencies watermark portfolios and proofs to maintain attribution. A semi-transparent logo in the corner of every page identifies who created the work, even if the file gets forwarded without context. For printed material that gets scanned and re-shared — brochures, catalogs, white papers — a watermark is the only attribution that survives the scan cycle.
Companies also watermark internal documents with their logo as a subtle branding touch. This is more about polish than protection — a lightly branded header or corner logo makes documents look professionally produced.
Confidentiality reminders
In regulated industries — healthcare, finance, legal — documents often carry classification markings. A "CONFIDENTIAL" watermark on a patient record or financial statement isn't just decoration; it's sometimes a compliance requirement. The watermark serves as a persistent visual reminder that the document contains sensitive information and should be handled according to the organization's data classification policy.
Copy deterrence
A visible watermark discourages casual copying and screenshots. If someone screenshots a watermarked page, the watermark appears in the screenshot — making it obvious that the content was captured from a controlled document. This won't stop a determined actor, but it raises the friction enough to deter opportunistic sharing.
Text watermarks vs. image watermarks
You have two fundamental choices: text or image. Each has tradeoffs.
Text watermarks
A text watermark renders a string — typically "DRAFT," "CONFIDENTIAL," or a custom message — directly onto each page using PDF text drawing operations. The advantages: small file size increase (just font data and a draw command per page), crisp rendering at any zoom level (because it's vector, not raster), and easy customization of font, size, color, rotation, and opacity.
The standard style is a large, semi-transparent, diagonal text string spanning the page. This works because diagonal text crosses both columns and margins, making it visible regardless of page layout, while the transparency keeps the underlying content readable. A 45-degree rotation with 15–25% opacity is the classic configuration.
Image watermarks
An image watermark embeds a logo, seal, or graphic onto each page. This is the choice for branding — your company logo, a certification mark, a custom stamp graphic. Image watermarks increase file size more than text (each page embeds or references the image data), and they can look blurry if the source image is too small for the placement size.
Use a PNG with a transparent background for image watermarks. A JPEG will render with a white rectangle behind it, which obscures underlying content. The image should be at least 300 DPI at the intended display size — if you're placing a 2-inch logo, the source image should be at least 600 pixels wide. Larger is fine; smaller will look pixelated when printed.
Positioning: where to put it
Watermark positioning depends on what you're trying to achieve. There are three common strategies.
Center diagonal (full-page)
The classic "DRAFT" placement. Large text rotated 45 degrees, centered on the page, spanning from one corner toward the other. This is maximally visible — impossible to miss, impossible to crop out without losing content. Use this for status markers and confidentiality labels where visibility is the point.
Corner placement
A logo or small text block in one corner of the page — typically bottom-right or top-right. Subtle and professional. The watermark is visible but doesn't interfere with reading. This is the choice for branding, page identification, and attribution. Leave enough margin padding (at least 20–30 points from the page edge) so the watermark doesn't get clipped by printer margins.
Header or footer strip
A horizontal text line across the top or bottom of the page — "Company Name — Confidential — Do Not Distribute." This reads naturally (no rotation) and works well for classification markings that need to be legible. The risk is overlap with existing headers, footers, or page numbers in the original document. If the original PDF already uses that space, the watermark text will collide with existing content.
Opacity: the most important setting
Getting opacity right is the difference between a watermark that works and one that ruins the document. Too opaque and the underlying text becomes hard to read. Too transparent and the watermark becomes invisible, especially when printed — printers render low-opacity marks even lighter than screens show them.
For text watermarks on text-heavy documents, 15–20% opacity is the sweet spot. The watermark is clearly visible but doesn't interfere with reading. For text watermarks on image-heavy documents (portfolios, photo proofs), you may need 25–35% because the visual complexity of images makes faint watermarks disappear.
For image watermarks (logos), 10–20% opacity works for background placement, while 40–60% works for assertive corner placement where you want the brand mark clearly visible. Test by printing a sample page — screen rendering and print rendering differ enough that an opacity that looks right on screen may be invisible on paper.
Color choices
Gray is the safe default for text watermarks. A medium gray (around #888888 or lighter) at low opacity is unobtrusive on both white and lightly colored pages. Red is common for "CONFIDENTIAL" and "DRAFT" — it draws attention, which is the point. But red watermarks on documents that will be printed in black-and-white render as dark gray, which may be too prominent.
Avoid colors that match the document's text color. A black watermark at 20% opacity becomes a light gray that blends into black body text — you see it in the margins but not over text blocks, which looks inconsistent. A light blue or light red provides contrast against black text while remaining visually distinct.
Adding watermarks with different tools
Adobe Acrobat
Acrobat Pro has built-in watermark support under Edit PDF → Watermark → Add. You can set text or import an image, control opacity, rotation, scale, and position, and choose whether the watermark appears in front of or behind page content. It also lets you limit watermarks to specific page ranges. The interface is straightforward, but Acrobat Pro requires a subscription.
Command line with qpdf or pdftk
For batch watermarking — applying the same watermark to hundreds of files — command-line tools are faster than any GUI. The typical approach is to create a single-page PDF containing just the watermark (using any PDF editor or even LaTeX), then stamp it onto every page of the target PDF:
# Using pdftk:
pdftk input.pdf stamp watermark.pdf output watermarked.pdf
# Using qpdf:
qpdf input.pdf --overlay watermark.pdf -- output.pdf
# Stamp = watermark on top of content
# Underlay = watermark behind content
pdftk input.pdf background watermark.pdf output watermarked.pdfThe distinction between "stamp" (overlay — watermark on top) and "background" (underlay — watermark behind) matters. Stamps always show; backgrounds can be hidden by opaque page content like images. For text-only PDFs, either works. For PDFs with full-page images, use stamp mode or the watermark won't be visible.
Browser-based tools
Online PDF tools — including our own Watermark PDF tool — let you add watermarks without installing software. The process is typically: upload the PDF, configure the watermark (text/image, position, opacity, rotation), preview, and download. Client-side tools do this entirely in the browser, so your file never leaves your computer.
Watermark placement: in front vs. behind
This is a detail that trips up a lot of people. A watermark can be rendered either in front of page content (overlay) or behind it (underlay).
Behind content(underlay) is the traditional approach. The watermark sits under all page elements. On pages with white backgrounds and text, it's visible through the white space. But on pages with background colors, full-bleed images, or opaque graphics, the watermark gets hidden behind them. If your PDF has any pages with non-white backgrounds, an underlay watermark may be invisible on those pages.
In front of content(overlay) guarantees visibility. The watermark draws on top of everything, so it's always visible regardless of page content. The tradeoff is that it overlaps text and images. At low opacity this is fine — the content beneath remains readable. At high opacity it becomes obstructive. For status markers like "DRAFT" where visibility matters most, overlay at low opacity is usually the right call.
Common mistakes
Watermark too prominent
A watermark at 50% opacity with a bold font makes the document hard to read. The purpose is to mark the document, not obscure it. If recipients complain they can't read the content, your watermark is too heavy. Drop the opacity and consider using a lighter color.
Watermark gets cropped in print
Watermarks placed too close to page edges get clipped by printer margins. Most printers can't print to the very edge of the paper — there's a 6–12mm margin on each side that gets cut off. If your watermark is positioned at the page boundary, it may be partially or fully cut off when printed. Inset corner watermarks by at least 15mm from each edge.
Wrong image format
Using a JPEG logo as a watermark puts a white rectangle behind it. The opacity applies to the entire image including the white background, so you get a ghostly white box with a ghostly logo inside it. Use PNG with transparency so only the logo itself appears.
Forgetting to check every page
Documents with mixed page orientations (portrait and landscape) or mixed page sizes (letter and legal) can cause watermarks to be positioned oddly on some pages. A watermark centered on a portrait page will be off-center on a landscape page. Check a multi-page preview before finalizing.
Can a watermark be removed?
Yes. A watermark is just a PDF drawing operation — text or an image rendered on the page. Any PDF editor that can access page content can remove it. Adobe Acrobat has a dedicated "Remove Watermark" function. Tools like qpdf can manipulate page content streams directly. For image watermarks, someone could simply edit the page content to delete the image reference.
This means watermarks are not a security mechanism. They don't prevent copying, screenshotting, or redistribution. They're a social and visual signal, not a technical barrier. If you need actual document security — preventing opening, printing, or editing — use PDF encryption and permissions instead, or combine a watermark with password protection.
Adding a watermark with MakeMyPDF
Our Watermark PDF tool runs entirely in your browser. Upload a PDF, choose between text and image watermarks, set the position (nine-point grid from top-left to bottom-right, or centered diagonal), adjust opacity and rotation, and preview the result before downloading. Your file stays on your computer throughout the process — nothing is uploaded to a server.
The tool supports both overlay and underlay positioning, custom colors for text watermarks, and transparency-preserving PNG uploads for image watermarks. For batch watermarking, the command-line approaches described above are more efficient — but for one-off documents, a browser tool gets the job done in under a minute.
FAQ
Should I place the watermark in front of or behind the content?
Behind (underlay) for branding watermarks where subtlety matters and pages have white backgrounds. In front (overlay) for status markers like "DRAFT" or "CONFIDENTIAL" where visibility on every page is essential. When in doubt, use overlay at low opacity — it guarantees the watermark is visible without making the document hard to read.
What opacity should I use?
Start at 15–20% for text watermarks over text-heavy content. Go up to 25–35% for image-heavy pages. Always print a test page — watermarks that look fine on screen often vanish on paper.
Will the watermark survive printing and re-scanning?
Yes, if it's visible enough. A printed watermark becomes part of the page image, so scanning the printout captures it. Very faint watermarks (under 10% opacity) may not survive print-scan cycles because the printer may not render them with enough contrast to be captured by the scanner.
Can I watermark specific pages instead of all pages?
Some tools let you specify page ranges. Adobe Acrobat supports this natively. Command-line tools require creating a multi-page watermark PDF with blank pages where you don't want a watermark. Our browser-based tool currently applies the watermark to all pages — for selective watermarking, you can split the PDF first, watermark the pages that need it, and merge them back together.