DEV Community

Enlh NG
Enlh NG

Posted on

8 Free Tools to Add a Watermark to a PDF (Text, Logo, or Both)

"CONFIDENTIAL" stamped across a contract draft. "SAMPLE" tiled over a preview PDF you're sending before payment clears. Your logo faintly repeated across a proposal so nobody "forgets" whose work it is. Watermarking a PDF is one of those tasks that feels like it should need Acrobat, but doesn't — most of it is a text overlay at an angle with reduced opacity, which is genuinely simple to do for free.

I looked at 8 ways to do it, split roughly into three camps: server-based tools, client-side tools that never upload your file, and one CLI option for anyone who wants this in a script instead of a browser tab.

1. ToolTiny — text watermarks with real control over the details

ToolTiny's Watermark PDF tool keeps it simple and gets the sliders right: type your text, then adjust font size, opacity, and rotation angle independently. The 45° diagonal + 20-30% opacity combo is the classic "document stamp" look, and you can preview it before committing. Files are auto-deleted from the server within 10 minutes, no account needed. Current limitation: text watermarks only — no logo/image upload yet, and it processes one file at a time rather than batching multiple PDFs.

2. FWD Tools — text or image, and your file never leaves your browser

This one's worth knowing about specifically for sensitive documents: everything runs client-side, so your PDF is never uploaded anywhere. It supports both text watermarks (CONFIDENTIAL, DRAFT, SAMPLE, custom) and image watermarks (PNG/JPEG logos or stamps), plus a tiling option that repeats the watermark in a grid — useful if you want it to survive someone cropping the page.

3. ToolsNak — also fully client-side, built on pdf.js + jsPDF

Another no-upload option, and one where the mechanics are refreshingly transparent: it loads your PDF with pdf.js, renders pages to canvas, stamps the watermark, and rebuilds the PDF with jsPDF — all in your browser tab. No file size limits since nothing goes to a server to be capped.

4. Visual Watermark — the most design-flexible option

Also processes entirely on-device, but goes further on customization: font styles, positioning, and the option to place the watermark behind your existing text rather than on top of it, which matters if you don't want the stamp to interfere with anything already on the page. Supports text, logo, or signature image.

5. Smallpdf — solid for logos, but free tier has daily limits

If you specifically need a company logo watermark rather than text, Smallpdf routes that through their Edit PDF tool alongside the standard text watermarker. Clean interface, but the free plan caps how many operations you get per day.

6. NestPDF — text or image, no daily limit mentioned

Similar feature set to the above (text or image, position/opacity/rotation controls), without an obvious free-tier cap, which makes it a reasonable pick if you're doing this more than once a week.

7. Watermark.ws — built for long, multi-page documents

If you're watermarking something with 100+ pages, this one specifically advertises support up to 200 pages per PDF and applies the watermark consistently across all of them in one pass — useful for things like full contract packets rather than a 2-page proposal.

8. PDFill — the one with a command-line mode

Most watermark tools assume you're doing this by hand, once. PDFill is desktop software, but it ships a CLI you can call from a script:

PDFill.exe WatermarkText Input.pdf Output.pdf -fontName "Times New Roman" -rgbFontColor "0 0 255" -flagLayout 2 -transparency 0.5
Enter fullscreen mode Exit fullscreen mode

-flagLayout 2 sets diagonal placement, -transparency 0.5 controls opacity. If you're watermarking PDFs as part of a build step or batch job rather than clicking through a UI each time, this is the only option here that fits that workflow.

Quick comparison

Tool Text Image/logo Uploads file? Batch/CLI
ToolTiny Yes (auto-deleted) No
FWD Tools No (client-side) No
ToolsNak No (client-side) No
Visual Watermark No (on-device) No
Smallpdf ✅ (via Edit PDF) Yes Limited (free tier caps)
NestPDF Yes No
Watermark.ws Yes Good for 100+ page files
PDFill Limited No (desktop) Yes (CLI)

The honest caveat

A watermark is a deterrent, not a lock. Anyone with basic PDF editing software can crop, redact, or paint over a low-opacity stamp if they're motivated enough — it doesn't cryptographically protect anything the way password encryption does. What it actually does well: it makes casual redistribution and "I forgot where I got this" plausible-deniability harder, and it visibly signals document status (DRAFT, CONFIDENTIAL) to anyone who opens the file honestly. For stopping someone from opening the file at all, that's a password (ToolTiny has one for that too) — for marking ownership and status on a file you're sharing anyway, a watermark does exactly what it's supposed to.

Top comments (0)