What a watermark actually is
The word "watermark" originally described translucent marks impressed into paper during manufacturing, visible when held up to light, impossible to remove without destroying the sheet. Digital PDF watermarks are a different beast: they are content drawn on top of each page. Because they are content, they can be removed by anyone with a PDF editor. What they do provide is a strong visual signal that this document is confidential, or a draft, or belongs to someone specific.
Used right, a watermark is a professionalism marker and a mild deterrent. Used wrong, it is either invisible or so intrusive the document becomes unreadable. This guide covers the design choices that make the difference.
Common reasons to watermark a PDF
Not every watermark serves the same purpose. Match the design to the job:
Draft indicators. A large, low-opacity "DRAFT" diagonal across each page tells reviewers the document is not final. This is the canonical use case and the one every office worker recognises.
Confidentiality warnings. "CONFIDENTIAL", "INTERNAL USE ONLY", or "ATTORNEY-CLIENT PRIVILEGED" text discourages accidental sharing and forms part of a paper trail if the document leaks.
Ownership marks. Company logo or copyright notice in a corner or footer. Common for design portfolios, technical drawings, and educational materials being shared with prospects.
Recipient tags. "Prepared for Client X" or a client-specific ID number lets you trace which recipient a leaked copy came from. Requires generating one PDF per recipient, which is more work but is the strongest deterrent in the visual-watermark family.
Certification marks. "Certified Copy", "As Filed", "Notarized" - official documents often carry visual attestations of their status.
Adding a watermark in your browser
Using our Watermark PDF tool, which runs in the browser and never uploads the file:
1. Open the PDF
Drag it onto the drop area. The tool loads the document into memory and shows a preview of the first page.
2. Choose text or image
Text watermarks. Type the words to display. Pick a font, colour, size, opacity, and rotation angle. The tool draws the text on every page of the output PDF.
Image watermarks. Upload a PNG or JPEG. A PNG with a transparent background produces the cleanest result; anything with a solid background will obscure the underlying page content.
3. Set opacity and rotation
The two settings that make or break a watermark:
- Opacity. 15-25% for background watermarks like "DRAFT". Higher than 40% and the mark starts competing with the page content; lower than 10% and it disappears in printouts.
- Rotation. 30-45Β° diagonal is the classic draft/confidential look. 0Β° works for footer marks or corner logos. 90Β° works for side-margin marks like publication labels.
4. Pick placement
Three common placements:
- Centred. One big mark across the middle of each page. Highest visibility, best for "DRAFT" and "CONFIDENTIAL".
- Tiled. Small marks repeated in a grid across the page. Harder to remove because there are many copies, and better against screenshot leaks because at least one mark is visible in any crop.
- Corner / footer. A small mark in one corner. Least intrusive, common for logos and copyright notices.
5. Process and download
Click "Process" and download the watermarked PDF. The original file on your device is untouched, the tool generates a new file.
Try it now
Watermark PDF Online
Add watermark to PDF or mark confidential PDFs in your browser.
No uploads. Runs in your browser.
What actually happens on each page
When you apply a watermark, the tool loads your PDF with pdf-lib,
iterates over every page, and draws the watermark as an overlay in
the page's coordinate space. For text, it embeds the chosen font
(usually Helvetica for compatibility) and draws the text string with
your opacity, rotation, and colour. For images, it embeds the image
as a PDF XObject and draws it once per placement.
The watermark becomes part of each page's content stream. That means:
- PDF viewers all see it. Adobe Reader, Preview, browser viewers, mobile readers, anything that renders PDF content will render the watermark.
- Printing preserves it. Whether the recipient prints or exports the file, the watermark travels along.
- Text extraction picks it up. Text watermarks are real text strings in the page content, so extraction tools (including our own Extract Text tool) will pull them out along with the page content. This can be a feature (proof of watermarking) or a bug (contaminated extracted text). Adjust for it if you plan to feed watermarked PDFs into search or analysis pipelines.
Watermarks are visual, not cryptographic
A watermark is content on the page. Any PDF editor, including
Adobe Acrobat, LibreOffice Draw, or a determined command-line user
with qpdf and a hex editor, can remove it. If you need
tamper-evident documents, watermarks are not the tool for the job.
Options that provide actual tamper evidence:
- Digital signatures (PKI). Cryptographically bind identity to content. Any modification invalidates the signature. Adobe Sign, DocuSign, and government eID services do this.
- Blockchain-anchored hashes. Compute a hash of the PDF and post it to a public ledger. Later verification proves the document is unchanged since the anchoring event.
- DRM-protected PDFs. Prevent editing entirely, at the cost of vendor lock-in. Most recipients will hate this.
Watermarks pair well with these, they provide the visual signal while a signature or hash provides the cryptographic one. Use both for high-stakes documents.
Design tips that keep watermarks legible without being intrusive
- Choose neutral colours. Light grey or a muted brand colour at low opacity beats stark black. Bright colours at low opacity turn into unpleasant pastel smears.
- Match the type to the tone. A serif "CONFIDENTIAL" reads as formal (contracts, legal filings). A sans-serif "DRAFT" reads as casual (internal review). Handwritten-style fonts read as personal (proofs to freelance clients).
- Test in print. A watermark that looks perfect on-screen at 25% opacity may vanish in printouts because printers boost contrast differently. Print one page and check.
- Keep image watermarks simple. Detailed logos become unrecognisable at low opacity. If your logo has fine text, upgrade it to the "wordmark only" version for watermarking.
- Repeat cautiously. Tiled watermarks in a 3Γ5 grid work; a 10Γ15 grid makes the document unreadable. Start sparse and add more only if you have leak concerns.
Watermarking many PDFs at once
Browser-based tools generally process one PDF at a time. If you need to watermark a batch:
- Merge, watermark, split. Combine PDFs into one file, apply watermark, split back. Works when the recipient-tag content is the same across all files.
- Recipient-specific tags. For personalised watermarks (e.g., one
per client), you need per-file processing. Either apply watermarks
in a scripted pipeline (using
pdf-libyourself) or do it by hand through the UI.
The browser tool is optimised for one-off tasks. Scripted batch
workflows for thousands of files are better handled server-side with
pdftk or qpdf.
Frequently asked questions
Can I add both text and image watermarks?
Run the tool twice. Apply the text watermark first, download the result, then apply the image watermark to that result. The two watermarks live in different layers on the page, so they do not interfere with each other.
Will the watermark change the file size?
Text watermarks add a few hundred bytes per page (the text string and its formatting). Image watermarks add the image once, so a 200 KB logo adds 200 KB to the output regardless of page count. If file size matters, use text or a heavily compressed image.
Can someone remove my watermark?
Yes, if they have a PDF editor. Watermarks are not security. Use them for their visual signal, not as protection against determined actors. For real protection, pair with a digital signature or DRM.
Does watermarking preserve interactive elements?
Yes. Form fields, links, bookmarks, and annotations are unaffected - the watermark is drawn on the page content layer, not on the form layer. However, the watermark may visually overlap form fields; test this before finalising.
Can I watermark a password-protected PDF?
Only after you decrypt it. The tool needs to read the page content to add a watermark, and locked pages are unreadable until the password is applied. Remove the password first, watermark, then re-apply the password if needed.
Does the watermark appear on every page?
Yes, by default. If you need it on only some pages (e.g., only page 1 for a coversheet stamp), split the PDF first, watermark the relevant pages, then merge back.
Related reading
- How to Split a PDF by Pages - necessary when you want a watermark on only some pages of a document.
- How to Sign a PDF Without Printing - pair a "CONFIDENTIAL" watermark with a visual signature for a finished-looking document.
- How to Extract Text from Scanned PDF - scanned documents can be watermarked, but only after they're processed with OCR if you need a text-searchable watermark.