---
name: Add Watermark
slug: add-watermark-2
category: Automation
description: Add Watermark adds a watermark to a PDF through an interactive, no-argument call. Use it when a user wants to apply a watermark to a PDF document.
github: "https://github.com/CoderWanFeng/python-office/tree/develop/skills/pdf/add_watermark"
language: Python
stars: 1339
forks: 301
install: "npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/pdf/add_watermark ~/.claude/skills/add_watermark"
installs_to: ~/.claude/skills/add_watermark
source_path: skills/pdf/add_watermark/SKILL.md
collection_size: 50
category_size: 1523
collection_url: "https://dirskills.com/collections/CoderWanFeng/python-office"
added: 2026-08-12T04:43:07.318Z
last_synced: 2026-08-12T04:43:07.318Z
canonical_url: "https://dirskills.com/skills/add-watermark-2"
---

# Add Watermark

Add Watermark adds a watermark to a PDF through an interactive, no-argument call. Use it when a user wants to apply a watermark to a PDF document.

**Install:**

```bash
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/pdf/add_watermark ~/.claude/skills/add_watermark
```

## README

# add_watermark Skill

> 给 PDF 添加水印（交互模式）

## 功能描述

通过交互方式给 PDF 添加水印（无参数）。

## 所属分类

`office/skills/pdf/add_watermark/`

## 调用方式

```python
from skills.pdf import add_watermark

add_watermark()
```

## 参数说明

无参数。

## 返回值

`None`

## 使用示例

```python
from skills.pdf import add_watermark
add_watermark()
```

## 原始函数

`office.api.pdf.add_watermark`
