Free PDF Watermark Online

Add text watermarks to your PDF files with full customization. Set text, size, color, opacity, and position.

Your files never leave your device
Drop PDF here or click to browse

Supports PDF · up to 100 MB

How It Works

  1. Upload a PDF file using the drop zone above.
  2. Customize the watermark text, size, color, and opacity.
  3. Choose the position (center diagonal, top, or bottom) and which pages to apply it to.
  4. Click "Apply Watermark" to process your PDF.
  5. Download the watermarked PDF instantly.

Why Add Watermarks?

Watermarks protect your intellectual property by marking documents as confidential, copyrighted, or under review. They discourage unauthorized sharing and printing while maintaining document readability. Common use cases include marking drafts, protecting trade secrets, copyright notices, and branding documents.

Watermark Options

Frequently Asked Questions

Is my PDF secure?

Yes. All processing happens in your browser. Your PDF never leaves your device and is not uploaded to any server.

Can I remove a watermark?

Watermarks added by this tool can be removed by re-processing the original PDF without a watermark. For encrypted or protected PDFs, removal may require additional tools.

What file size limit is there?

PDFs up to 100 MB can be processed. Processing time depends on file size and your device capabilities.

Can I use images or logos instead of text?

This tool adds text watermarks. For image/logo watermarks, use a desktop PDF editor like Adobe Acrobat or free alternatives.

What "PDF watermark" actually means

In everyday usage "watermark" covers at least three genuinely different things, and they are often conflated. Pulling them apart matters because the choice of technique determines what the watermark is for and how easily it can be removed. The first is a visible page-content watermark: text or an image drawn into the page itself, on top of (or behind) the document content. A CONFIDENTIAL or DRAFT stamp diagonally across every page, a company logo faintly visible in the background, a "DO NOT COPY" warning in the footer of a contract. The watermark becomes part of the page imagery; it is rendered every time the page is rendered, prints whenever the page prints, and nothing in the PDF file's structure distinguishes it from the original page content. This tool produces watermarks of this kind.

The second is a watermark annotation, called a "stamp annotation" in the PDF specification. Annotations are separate objects inside the PDF that overlay the page at display time. They look the same as content-stream watermarks when rendered, but the underlying bytes are an annotation object: a user with a PDF editor can select and delete a stamp annotation in seconds, whereas a content-stream watermark requires re-editing the page content stream itself, which most consumer tools cannot do. For visible "confidential" or "draft" marking, content-stream watermarks are the standard choice because they survive normal-user editing.

The third is an invisible watermark, also called steganographic or forensic watermarking. Information is embedded in the document in a way that is undetectable to a human reader, typically by perturbing the least-significant bits of embedded images, or by minute spacing changes between letters. Forensic watermarks typically encode a per-recipient identifier so that a leaked copy can be traced back to the original recipient. This is a specialised field used by film studios for screener copies and by some enterprise rights-management products. It is not what consumer-facing online "watermark a PDF" tools mean, and it is not what this tool produces. This tool does the first thing: it draws visible text into the page content stream of every page (or a selected page range), using a font you can size, a colour you can pick, an opacity you can dial, and a position (centre diagonal, top, or bottom).

A short history of watermarks

The word "watermark" predates digital documents by seven centuries. The earliest paper watermarks were made in Fabriano, Italy, around 1282. Fabriano's papermakers had figured out that pressing a thin wire design into wet paper pulp left a translucent pattern in the finished sheet, visible when the paper was held up to light. The original purpose was a trademark: a small wire shape (a horseshoe, a crown, a cross) identified which mill had produced the paper, useful when paper was a luxury good and quality varied widely. The technique spread to other European mills through the 1300s and 1400s.

By the late 17th century, watermarks had been adopted for a second purpose: anti-counterfeiting on banknotes. Embedding a watermark in the paper substrate made banknotes harder to fake because ordinary printing could not reproduce the translucent effect. The 1801 introduction of wavy-line watermarks (William Brewer's idea) made the technique even harder to imitate, and the 1826 invention of the dandy roll by John Marshall made watermark production efficient enough for mass currency printing. By 1848, cylinder-mould watermark paper had become the standard substrate for banknotes, passports, motor-vehicle titles, and other security documents. Modern banknotes still use this technology; the watermark you can see when you hold a 20-euro or 20-dollar note up to the light is direct continuity with the 1282 Fabriano technique. Digital watermarking borrowed the metaphor and the term, then diverged into the visible-overlay style (what this tool does) and the invisible-encoding style (a separate specialty product line).

How this tool works

A PDF page is, at the lowest level, a sequence of drawing operations stored in a content stream. The page tells the viewer: set the current transformation matrix, set the font and size, set the colour, then show this glyph at this position; move, show the next glyph; and so on. Drawing a watermark means adding more drawing operations to this stream: set the watermark font, set the watermark colour, set the alpha (transparency), set the rotation, then show the watermark text. In PDF, transparency is part of the graphics state, controlled by an ExtGState (extended graphics state) dictionary referenced by name with the gs operator. Two alpha values exist: CA controls the alpha for stroke operations and ca controls the alpha for fill operations. For filled text, which is how text is normally rendered, the ca value is the one that matters; a value of 0.3 means 30 percent opacity, the same number you set with the opacity slider in this tool.

Rotation is a transformation of the current transformation matrix (CTM), a 3-by-3 matrix that maps the page's user coordinate system to the underlying device coordinate system. The diagonal watermark this tool produces uses a -45 degree rotation, which runs from lower-left to upper-right on a standard A4 or Letter page. The library this tool uses, pdf-lib, is an MIT-licensed JavaScript PDF library by Andrew Dillon, originally released in 2018 and widely adopted for browser-side PDF generation. pdf-lib's drawText method takes a text string and an options object that maps directly onto the PDF imaging operators: size sets the font size, color sets the fill colour, opacity sets the graphics-state ca value (the library emits an ExtGState under the hood), rotate sets the CTM rotation, and x and y set the text position in user-space points (1 point = 1/72 inch).

Step by step, when you click Apply Watermark: the browser File API reads the PDF bytes into memory locally; pdf-lib parses the byte array into an in-memory document tree (pages, page resources, fonts, images, content streams); the tool creates a new empty document and copies each source page into it page by page; for each page in the apply-to range, the tool calls drawText with your chosen size, colour, opacity, rotation, and position, and pdf-lib appends the corresponding operators to the page's content stream; the tool calls save to serialise the modified document back to a byte array, then wraps the bytes in a Blob and hands them to the browser's download API. No network request fires during any step. You can verify this by opening the browser developer tools to the Network tab before clicking Apply Watermark.

Position, font, colour, opacity

Centre diagonal, the default in this tool, is the position chosen by most consumer-facing watermark tools for CONFIDENTIAL or DRAFT stamps because it crosses the maximum amount of page content. Cropping out the watermark by trimming the page is ineffective when the watermark crosses the centre at 45 degrees, because trimming far enough to remove it also removes most of the page content. This is the historical reason banknote watermarks sit in the centre of the bill rather than the corner. Top or bottom watermarks are a different design language: they function more like a header or footer, less obtrusive, less disruptive to reading, and visually marking the document without fighting it for attention. Common choices for top or bottom watermarks include a company name, a document version number, a date, or a "Page X of Y" pattern.

Font size has a working range from about 20 points (small, suited to a corner or header use) to 100 points (large, suited to a centre-diagonal banner across a whole page). The default of 50 points fills most of the visible width of a centre-diagonal watermark on an A4 or Letter page without spilling off the edges. Light grey is the default colour and the standard choice in print-publishing convention; a neutral grey works against both white-page backgrounds and the typical mix of dark text and embedded images. Red is the conventional choice for urgent markings (CONFIDENTIAL, DO NOT COPY, INVALID); blue is sometimes chosen for branded marks; black with low opacity functions as grey. Opacity is the single most important setting:

The Web Content Accessibility Guidelines define a 4.5:1 contrast ratio between body text and background as the minimum threshold for normal text. A watermark applied with too dark a colour or too high an opacity can pull this ratio below the threshold, breaking accessibility for low-vision readers. The 15 to 30 percent range in light grey on a white background keeps body-text contrast within the accessible range.

Real-world workflows that drive watermarking

Common pitfalls and what they mean

Browser-side versus cloud watermarking

The cloud PDF-watermark services in the top of search results (Smallpdf, ILovePDF, Sejda, PDF24 web, Adobe Acrobat Online) all upload your file to their servers, watermark it server-side, and serve the watermarked copy as a download. The major operators publish privacy policies committing to deletion within hours (Smallpdf one hour, ILovePDF two hours, Sejda two hours) and TLS in transit, and they have strong commercial reasons to comply. But "deletion within hours" is not "never seen," and uploading confidential documents (which is the most common reason to watermark a PDF in the first place) to a third-party server has an obvious tension with the purpose of marking the document confidential.

This tool does not upload the file. The pdf-lib library runs in your browser tab, the File API reads the PDF bytes locally, all the drawing operations happen in JavaScript inside the tab, and the Blob with the watermarked bytes is handed to the browser's download API. You can prove it: open the browser developer tools to the Network tab before clicking Apply Watermark, run the operation, and observe that no request fires with your file content. The trade-off is feature scope. Cloud services often offer image watermarks (logos), drag-and-drop visual positioning, and batch processing across multiple PDFs at once. This tool does text watermarks only, with numeric positioning, single-file processing, and up to 100 MB per file. For image or logo watermarks, a desktop PDF editor (Adobe Acrobat, LibreOffice Draw, Foxit) is the realistic option.

More frequently asked questions

What is the difference between a watermark and a stamp annotation?

A stamp annotation is a separate annotation object inside the PDF; it overlays the page at display time and can be deleted in one click by a user with a PDF editor. A watermark (what this tool produces) is drawn into the page content stream itself; removing it requires rewriting the stream, which most consumer tools cannot do. Watermarks are stronger for deterrent purposes; stamp annotations are easier to apply and remove for collaborative review.

Is this a forensic or invisible watermark?

No. Forensic watermarks (also called fingerprinting) encode an invisible per-recipient identifier in the document so a leaked copy can be traced. They are produced by specialised digital-rights-management products (Imatag, Digimarc, vendor-specific DRM systems). This tool produces visible deterrent watermarks suitable for marking documents CONFIDENTIAL, DRAFT, or similar; that is a different and more common purpose.

Can I watermark a password-protected PDF directly?

Not directly. The PDF must be unlocked first so pdf-lib can read its content streams. Use the PDF Unlock tool with the open password to produce an unlocked copy, then watermark the unlocked copy. If you want the result to remain password-protected, run the watermarked output through the PDF Protect tool to apply a new password with AES-256.

Is watermark removal legal?

Removing a watermark from a document you own or have explicit permission to modify is legal. Removing watermarks from copyrighted material you do not own, or from documents marked confidential by their owner, is generally illegal under copyright statute in most jurisdictions and may implicate other laws (trade secrets, contract breach, anti-circumvention). Consider whether you have the rights to the document before attempting removal.

Why -45 degree rotation for the diagonal watermark?

It is a convention. A -45 degree rotation runs the watermark from lower-left to upper-right on a standard A4 or Letter page, crossing both the body text and embedded images. A +45 degree rotation works equally well; both choices are equivalent for visibility and resistance to cropping. -45 is slightly more common in commercial PDF tools and is what this tool emits.

Can I batch-watermark many PDFs at once?

Not in this tool. Each PDF must be watermarked through the upload-configure-apply flow. For batch watermarking at scale, a desktop tool with a command-line interface (qpdf, pdfcpu, pdftk) or a PDF SDK is the practical answer. The reason this tool does not batch is browser memory: opening, watermarking, and saving a 100 MB PDF allocates several hundred megabytes, and running ten in parallel can run a tab out of memory.

Is there a desktop or command-line equivalent?

qpdf has an --overlay mode that overlays a one-page watermark PDF onto every page of a target document; pdfcpu has a stamp command with similar function. Both run on every platform and are scriptable for batch use. Adobe Acrobat Pro, Foxit PDF Editor, and LibreOffice Draw all expose watermark functionality through their GUIs and support image watermarks that this tool does not. For one-off watermarking the browser is the fastest option; for repeating workflows, the desktop tools win on automation.

Related Tools