🖼️
AutomationPython

Add Watermark

by CoderWanFeng

Add Watermark is an Automation skill for Claude Code, published by CoderWanFeng in python-office.

1.3K stars299 forkson CoderWanFeng/python-officeAdded 2026/07/20Repository updated 2026/08/04
officepippypipythonweixin
Install in seconds
Install Add Watermark
Copy Add Watermark into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/image/add_watermark ~/.claude/skills/add_watermark

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/CoderWanFeng/python-office.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/image/add_watermark/SKILL.md in CoderWanFeng/python-office
Installs to
~/.claude/skills/add_watermark
Collection
One of 50 skills cataloged from this repository
Category
Automation2226 skills

What Add Watermark does

Adds text watermarks to images with customizable color, size, opacity, spacing, and angle. Use when you need to batch watermark images for copyright or branding.

Add Watermark is cataloged under Automation on DirSkills. Add Watermark comes from a repository tagged office, pip, pypi, python and weixin.

Documentation

README

add_watermark Skill

给图片加水印

功能描述

向图片添加文字水印,支持自定义颜色、大小、透明度、间距、角度等参数。

所属分类

office/skills/image/add_watermark/

调用方式

from skills.image import add_watermark

add_watermark(
    file='./test.png',
    mark='python-office',
    output_path='./',
    color="#eaeaea",
    size=30,
    opacity=0.35,
    space=200,
    angle=30
)

参数说明

参数 类型 必填 默认值 说明
file str - 图片位置
mark str - 水印内容
output_path str './' 输出位置
color str "#eaeaea" 水印颜色
size int 30 水印大小
opacity float 0.35 不透明度,范围 0.01~1
space int 200 水印间距
angle int 30 水印角度

返回值

None

使用示例

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Add Watermark

  • What else does CoderWanFeng publish alongside Add Watermark?

    Add Watermark is one of 50 skills that DirSkills catalogs from CoderWanFeng/python-office, the repository it ships in. Its siblings there include Add Image Watermark, Add Line by Type and Add Text Watermark. Each one is a separate skill with its own page in this directory, installs the same way Add Watermark does, and is maintained by CoderWanFeng in that same repository. The rest of the collection is listed on the CoderWanFeng/python-office page.

  • How does Add Watermark compare to other Automation skills?

    Add Watermark ranks #644 by stars among the 2226 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Add Watermark against them. Open each page to compare what they document and how they install.