Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/CoderWanFeng/python-office

Works with Git. The repository opens in your current directory.

🖼️
AutomationPython

Del Watermark

by CoderWanFeng

Removes watermarks from input images and saves the cleaned result. Use this skill when you need to erase watermarks from photos or graphics.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

del_watermark Skill

从输入的图片中删除水印

功能描述

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

所属分类

office/skills/image/del_watermark/

调用方式

from office.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 office.skills.image import del_watermark
del_watermark(input_image='./photo.jpg')

原始函数

office.api.image.del_watermark