A stamp and a watermark solve different problems

Both add visible material over a PDF, but their scope differs. A watermark typically repeats across pages as a broad ownership or status notice. A stamp marks a chosen point on a chosen page, such as APPROVED on a cover or CONFIDENTIAL beside one section. Neither method encrypts the document or prevents editing with specialized software.

The stamp begins as a small rendered graphic

Visually, a rubber stamp isn't just text, it's text inside a bordered box, tilted a consistent amount, in a color that reads as "official" (approval green, draft gray, warning red). The most direct way to produce that is to draw it once as a small offscreen image: render a box and rotated, centered text onto a canvas, then export that canvas as a PNG. From there it's just an image, which makes it trivial to preview at any size and embed into a PDF page with a PDF library, no per-glyph rotation math needed inside the PDF itself.

Preview clicks and PDF coordinates start from opposite corners

Browser pointer coordinates usually begin at the upper-left corner and increase downward. Standard PDF page coordinates begin at the lower-left and increase upward. Placement code must scale the preview position to the real page and invert the vertical axis while accounting for stamp dimensions and page rotation. Skipping any part of that conversion can move the result far from the selected point.

Canvas (click preview) (0,0) y ↓ stamp PDF page (real output) (0,0) y ↑ stamp pdfY = pageHeight βˆ’ canvasY βˆ’ stampHeight
The same click position means two different things depending on which origin you measure it from, a stamping tool has to convert between them explicitly, once, right before drawing.

Rotation and color help readers recognize the label

None of this is decorative flourish for its own sake, the rotated, hand-pressed look and the color-coded meaning (green for approval, red for a warning, neutral gray for a draft) are exactly what makes a stamp instantly legible at a glance, the same way it would be on paper. A perfectly straight, plain-black rectangle with the word "APPROVED" in it reads as a text box, not a stamp; the tilt is doing real communicative work.

What a stamp does not establish

Is a PDF stamp a legal signature? No, a text stamp like APPROVED or CONFIDENTIAL is a visual marker, not a cryptographic signature and not proof of identity or consent. For something that needs to hold up as a signature, use an actual signing tool.

Can one stamp cover multiple pages at once? Not directly, a stamp is inherently a single-page, single-spot mark. Covering several pages means repeating the placement step once per page, which is different from a watermark's "every page automatically" behavior.

Why does long custom stamp text sometimes look smaller than a preset? A stamp box has a fixed size, so a tool that lets you type your own text has to shrink the font until the text fits inside that box, the same way a business card printer shrinks a long name to keep it on one line.

Stamp a PDF

Orisod’s Add Stamps tool offers APPROVED, DRAFT and CONFIDENTIAL presets plus custom text with click-to-place preview in your browser.

Stamp a PDF β†’

Behind the small visual mark are a rendered graphic, page scaling and a coordinate conversion. Getting those pieces right produces predictable placement, but the stamp remains ordinary page content rather than a signature, audit record or security control.