🖼️
AutomationPython

Remove Watermark

by CoderWanFeng

Remove 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 Remove Watermark
Copy Remove 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/del_watermark ~/.claude/skills/del_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/del_watermark/SKILL.md in CoderWanFeng/python-office
Installs to
~/.claude/skills/del_watermark
Collection
One of 50 skills cataloged from this repository
Category
Automation2226 skills

What Remove Watermark does

Call python-office’s del_watermark operation with input and output paths; its source does not specify algorithms, supported formats, or output quality.

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

Reviewed 2026-08-04

DirSkills review

This wrapper passes an input image and an output path to python-office’s del_watermark operation. Use it only on images you own or are authorized to edit, and do not infer undocumented restoration quality.

  • input_image is required, output_image defaults to ./del_water_mark.jpg, and the documented function returns no value.
  • The source names no removal algorithm, supported image types, or quality guarantees, so test a copy and inspect the result before replacing any original.

Documentation

README

del_watermark Skill

从输入的图片中删除水印

功能描述

从输入的图片中删除水印,并保存处理后的图片到指定路径。

所属分类

office/skills/image/del_watermark/

调用方式

from skills.image import del_watermark

del_watermark(
    input_image='./with_watermark.jpg',
    output_image='./no_watermark.jpg'
)

参数说明

参数 类型 必填 默认值 说明
input_image str - 输入图片的路径
output_image str './del_water_mark.jpg' 处理后图片的保存路径

返回值

None

使用示例

from skills.image import del_watermark
del_watermark(input_image='./photo.jpg')

原始函数

office.api.image.del_watermark

Frequently asked about Remove Watermark

  • What else does CoderWanFeng publish alongside Remove Watermark?

    Remove 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 Remove 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 Remove Watermark compare to other Automation skills?

    Remove Watermark ranks #672 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 Remove Watermark against them. Open each page to compare what they document and how they install.