Add Image Watermark To Word Document in n8n
Add Image Watermark To Word is a PDF4me node action in n8n that stamps an image onto a Word document. Use it to brand outgoing reports with a company logo, mark drafts before review, or apply a confidentiality badge to every contract a workflow produces, without opening a single file in Word.
What this node does
PDF4me Word: Add Image Watermark To Word takes two inputs, not one: the .docx file to stamp and the image to stamp onto it. Each has its own input-method dropdown, so the document and the watermark can arrive by different routes, such as a document from a previous node and a logo fetched from a URL. Sizing is by Scale unless you set an explicit Width or Height in points.
Authenticating Your API Request
Every PDF4me node in n8n requires a valid credential. Create or select one that holds your PDF4me API key so the workflow can authenticate watermark requests securely.
Important Facts You Should Not Miss

Note the two independent input methods: the Word file arrives by URL while the watermark image comes from the previous node. Width and Height sit at 0, so Scale 1 controls the size.
Image Watermark vs Text Watermark in Word
| Question | Add Image Watermark To Word | Add Text Watermark To Word |
|---|---|---|
| What gets stamped | An image file such as a logo, seal, or badge | A word or phrase you type, such as DRAFT |
| Second input needed | Yes, the image file itself | No, only the text string |
| Changing it per run | Swap the image binary or URL | Change the text with an expression |
| Best for | Company branding and scanned marks | Status labels and per-document text |
| Transparency control | Semi-Transparent toggle plus PNG alpha | Handled through the text styling options |
What Parameters Does Add Image Watermark To Word Need?
The Word file and the watermark image each have an input-method dropdown. Whichever method you pick, the matching source field appears directly beneath it, so the conditional rows below change depending on your selection.
| Parameter | Required | What it does | Example |
|---|---|---|---|
| Credential to connect with | Required | The PDF4me API credential the node authenticates with. | PDF4me account |
| Operation | Required | The action this node performs. Select Add Image Watermark To Word. | Add Image Watermark To Word |
| Word File Input Method | Required | How the .docx reaches the node: from the previous node as binary data, as a Base64 string, or downloaded from a URL. | Download from URL |
| Word File URL | Conditional | Public URL of the .docx to stamp. Appears only when the Word file input method is set to download from a URL. | https://example.com/file.docx |
| Document Name | Required | Filename of the input document including the extension. Used for format detection, so keep the .docx suffix accurate. | document.docx |
| Watermark Image Input Method | Required | How the image reaches the node. Independent of the Word file input method, so the two can differ. | From Previous Node (Binary Data) |
| Image Binary Data Property Name | Conditional | Name of the binary property holding the watermark image. Appears when the image comes from the previous node. | data |
| Scale | Optional | Size multiplier applied to the image at its natural size. Ignored when a non-zero Width or Height is supplied. | 1 |
| Width (Points) | Optional | Exact watermark width in points. Leave at 0 to size by Scale. Setting only Width keeps the aspect ratio. | 0 |
| Height (Points) | Optional | Exact watermark height in points. Leave at 0 to size by Scale. Setting only Height keeps the aspect ratio. | 0 |
| Center Alignment | Optional | Toggle that centres the watermark on the page. Ships enabled; turn it off to align to the top left within the margins. | enabled |
| Semi-Transparent | Optional | Toggle that reduces watermark opacity so page text stays readable underneath. Ships disabled. | disabled |
| Culture Name | Optional | Culture code recorded for document processing, such as en-US or de-DE. | en-US |
| Output File Name | Optional | Filename of the returned document. Keep the .docx extension so downstream steps handle it correctly. | word_with_watermark.docx |
| Output Binary Data Name | Optional | Binary property the stamped document is written to. Leave as data unless a later node expects another name. | data |
Output
| Field | Type | What it contains |
|---|---|---|
| fileName | String | Name of the returned watermarked document, taken from Output File Name. |
| fileSize | Number | Size of the returned document in bytes. A useful sanity check that the image was embedded. |
| success | Boolean | Whether the watermark was applied. Branch on this so failures surface as alerts. |
| originalFileName | String | Name of the input document as supplied in Document Name. |
| scale | Number | The scale factor actually applied, echoed back for verification. |
| alignImage | Boolean | Whether centre alignment was used, reflecting the Center Alignment toggle. |
| semiTransparent | Boolean | Whether reduced opacity was applied, reflecting the Semi-Transparent toggle. |
| cultureName | String | The culture code recorded for the operation. |
| message | String | Human-readable status text describing the result of the operation. |
The stamped document itself is returned as binary on the property named in Output Binary Data Name, ready to write to storage, attach to an email, or feed into a PDF conversion step.
How Do I Set Up Add Image Watermark To Word in n8n?
- Add the PDF4me Word node to your workflow and set Operation to Add Image Watermark To Word.
- Select your PDF4me credential, or create one and paste your API key.
- Pick a Word File Input Method and supply the
.docxthrough the field that appears beneath it. - Set Document Name so the
.docxextension is present and correct. - Pick a Watermark Image Input Method, then point Image Binary Data Property Name at the property holding the image, usually
data. - Leave Width (Points) and Height (Points) at
0and adjust Scale, or set explicit point values when the size must be exact. - Turn on Semi-Transparent if the watermark sits over body text, and leave Center Alignment on unless you want a top-left mark.
- Set Output File Name ending in
.docx, execute the node, and route the result onward.
Typical Setups
Workflow ExamplesCommon n8n workflow patterns using Add Image Watermark To Word.
- A reporting step produces a Word document on a schedule.
- Add Image Watermark To Word stamps the company logo onto it.
- The branded file is emailed to the distribution list.
- A contract lands in a review folder.
- A DRAFT badge image is stamped with Semi-Transparent enabled.
- Reviewers can never mistake the working copy for the final one.
- The logo is applied while the file is still editable Word.
- A conversion step turns the stamped document into a PDF.
- The PDF is published, with the mark baked in rather than overlaid later.
- A folder listing produces one item per legacy .docx.
- The node runs once per item with the same watermark image.
- The stamped copies are written back under new filenames.
Practical Tips
Cheat Sheet
| Field | Value |
|---|---|
| Operation | Add Image Watermark To Word |
| Word File Input Method | Download from URL |
| Word File URL | https://example.com/file.docx |
| Document Name | document.docx |
| Watermark Image Input Method | From Previous Node (Binary Data) |
| Image Binary Data Property Name | data |
| Scale | 1 |
| Width (Points) / Height (Points) | 0 / 0 |
| Center Alignment | enabled |
| Semi-Transparent | disabled |
| Culture Name | en-US |
| Output File Name | word_with_watermark.docx |
| Output Binary Data Name | data |