---
title: "Apply multiple watermarks to PDFs"
canonical_url: "https://www.nutrient.io/guides/document-converter/power-automate/watermark/apply-multiple-watermarks/"
md_url: "https://www.nutrient.io/guides/document-converter/power-automate/watermark/apply-multiple-watermarks.md"
last_updated: "2026-06-09T10:14:21.368Z"
description: "Learn to add multiple watermarks to PDFs using Power Automate and the Nutrient Document Converter. Create efficient workflows for document management."
---

# Add multiple watermarks with Power Automate

In this guide, you’ll learn how to add multiple watermarks to PDFs using Power Automate and Nutrient Document Converter. You can build workflows that add text, rectangles, ellipses, images, PDF files, RTF files, QR codes, barcodes, and other shapes as watermarks to PDFs. However, in cases when you need to combine multiple watermarks, a more complex action is available, which is to use an XML syntax. Here’s how to use the Add composite watermark Power Automate action of Nutrient Document Converter connector.

## Prerequisites

Before you start building the workflow, ensure all prerequisites are in place:

- A full or free trial subscription to [Document Converter for Power Automate](https://www.nutrient.io/low-code/try/converter-power-automate/)

- Permission to use Power Automate and create flows in Microsoft 365

## Using Power Automate to add composite watermarks to PDFs

1. Click **Create** to create a new flow in Power Automate.![create a flow](@/assets/guides/muhimbi/pdf-converter/power-automate/create-a-flow.png)

2. Click **Automated cloud flow**, and from the list of triggers, select the **When a file is created or modified (properties only)** trigger. By using this trigger, a new flow will start when a file is added to a specified folder.

3. In the trigger dialog, specify the path to the SharePoint Online library where the new files will be stored.![get file content](@/assets/guides/muhimbi/pdf-converter/power-automate/get-file-content-2.png)

4. Search for the **Get file content** SharePoint action, specify the site address, and in the File Identifier field, select **Identifier**.

5. Search for Nutrient actions and select the **Convert document** action. Specify **File name with extension** as the source file name, **Body** as the source file content, and **PDF** as the output format.![convert document](@/assets/guides/muhimbi/pdf-converter/power-automate/convert-document.png)

6. Add another Nutrient action, **Add composite watermark**, to the flow canvas.

7. In the Source file content field, add **Processed file content**, and in the Watermark data field, copy and paste the sample Watermark XML of your choice that’s shown in the next section of this guide. Select the Source file name again.![add composite watermarks](@/assets/guides/muhimbi/pdf-converter/power-automate/add-composite-watermarks.png)

8. Add the **Create file** SharePoint action to create the PDF document. Specify the site address and a folder path that’s different than the one where the source file is. In the File Name field, choose the **Base file name** trigger and add **.pdf** at the end, as shown in the image above. In the File Content field, choose **Processed file content**, and save the flow.![result](@/assets/guides/muhimbi/pdf-converter/power-automate/result.png)

9. Upload a non-PDF file — for example, a Word document — or create a new file in SharePoint to test the flow. You’ll find a watermarked PDF in the output folder.

### Sample watermark XML

The sample codes below produce three different watermarks.

The first adds an image of the company logo (in the foreground) to the top-right corner of each page in the document:

```xml

 <watermark
    hPosition="right"
    vPosition="top"
    width="200"
    height="73"
    zOrder="1"
    opacity="100"
    pageOrientation="both">
    <image
      width="200"
      height="73"
      scaleMode="maintainaspectratio"
   imageFilePath="http://www.muhimbi-online.com/Content/Images/Muhimbi-logo.png"/>
  </watermark>

```

The second adds text that reads Confidential to the center of the page in the background:

```xml

<watermark
    hPosition="Center"
    vPosition="Middle"
    width="500"
    height="500"
    zOrder="-1"
    rotation="-45"
    pageOrientation="both">
    <text
      width="500"
      height="500"
      fillColor="#000000"

      content="Confidential"
      fontFamilyName="Times New Roman"
      fontSize="24"
      fontStyle="bold|italic"
      wordWrap="word"
      />
  </watermark>

```

The third adds an automatically generated page number to the bottom-right corner of each page:

```xml

<watermark
    hPosition="right"
    vPosition="bottom"
    width="100"
    height="40"
    zOrder="1"
    pageOrientation="both">
    <text
      hPosition="left"
      vPosition="top"
      width="100"
      height="40"
      content="Page {PAGE} of {NUMPAGES}"
      fontFamilyName="Arial"
      fontSize="11"
      hAlign="left"
      vAlign="top"
      />
  </watermark>

```

If you use this example, make sure the `imageFilePath` attribute is updated to an anonymous file URL in your system.

## Applying watermarks to Office or PDF files without converting to PDF

There’s another Power Automate flow for when you need to add multiple watermarks to PDF files or Office files that you don’t want to convert.![when a file is created](@/assets/guides/muhimbi/pdf-converter/power-automate/when-a-file-is-created.png)

1. Click **Create** to create a new flow in Power Automate.

2. Click **Automated cloud flow**, and from the list of triggers, select the **When a file is created or modified (properties only)** trigger. By using this trigger, a new flow will start when a file is added to a specified folder.

3. Specify the library name and folder where the source file will be uploaded or created.![add composite watermark](@/assets/guides/muhimbi/pdf-converter/power-automate/add-composite-watermark.png)

4. Search for the **Get file content** SharePoint action, specify the site address, and in the File Identifier field, select **Identifier**.

5. Add Nutrient’s **Add composite watermark** action to the flow canvas.

6. In the Source file content field, choose the **Body** trigger. Copy and paste the XML sample of your choice that’s mentioned in the section above.

7. In the Source file name field, choose **File name with extension**.![create file](@/assets/guides/muhimbi/pdf-converter/power-automate/create-file.png)

8. Add the **Create file** SharePoint action. Specify the site address and a folder path different to the one where the source file is. In the File Name field, choose the **File name with extension** trigger. In the File Content field, choose **Processed file content**, and save the flow.
---

## Related pages

- [Add image watermarks to documents using Power Automate](/guides/document-converter/power-automate/watermark/add-image-watermark.md)
- [Add watermarks to images using Power Automate](/guides/document-converter/power-automate/watermark/watermark-image.md)
- [Power Automate add watermark](/guides/document-converter/power-automate/watermark.md)
- [Add watermarks in SharePoint using Power Automate](/guides/document-converter/power-automate/watermark/watermark-in-sharepoint.md)
- [Add watermark to MS Word files using Power Automate](/guides/document-converter/power-automate/watermark/watermark-word.md)
- [Add watermarks to PDFs using Power Automate](/guides/document-converter/power-automate/watermark/watermark-pdf.md)

