CtrlK
BlogDocsLog inGet started
Tessl Logo

add_text_watermark

给 PDF 添加文字水印,支持自定义字体、字号、颜色、位置。当用户提到 PDF 文字水印、PDF 加水印 时使用。

SKILL.md
Quality
Evals
Security

add_text_watermark Skill

在 PDF 文档中添加文本水印

功能描述

向 PDF 文档添加文本水印,可自定义位置、字体、字号、颜色等参数。

所属分类

office/skills/pdf/add_text_watermark/

调用方式

from office.skills.pdf import add_text_watermark

add_text_watermark(
    input_file='./test.pdf',
    point=(100, 200),
    text='python-office',
    output_file='./with_watermark.pdf',
    fontname='Helvetica',
    fontsize=12,
    color=(1, 0, 0)
)

参数说明

参数类型必填默认值说明
input_filestr-PDF 文件路径
pointtuple-水印位置坐标
textstr'python-office'水印文本内容
output_filestr'./pdf_watermark.pdf'输出 PDF 文件路径
fontnamestr'Helvetica'字体名称
fontsizeint12字体大小
colortuple(1, 0, 0)字体颜色(RGB)

返回值

None

使用示例

from office.skills.pdf import add_text_watermark
add_text_watermark(input_file='./report.pdf', text='机密文件')

视频教程

https://www.python4office.cn/python-office/popdf/%E8%AF%BE%E7%A8%8B/7-add_watermark

原始函数

office.api.pdf.add_text_watermark

Repository
CoderWanFeng/python-office
Last updated
First committed

Is this your skill?

If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.