给 PDF 添加水印
向 PDF 文件添加文字水印。
office/skills/pdf/add_mark/
from office.skills.pdf import add_mark
add_mark(
input_file='./test.pdf',
mark_str='python-office',
output_path='./',
output_file='watermarked.pdf'
)| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
input_file | str | 否 | - | PDF 文件的位置,例如 d:/code/programmer.pdf |
mark_str | str | 否 | - | 需要添加的水印内容,例如 "python-office" |
output_path | str | 否 | - | 保存文件的位置 |
output_file | str | 否 | - | 指定添加了水印的文件名称 |
pdf_file | str | 否 | - | [已弃用] 请使用 input_file |
output_file_name | str | 否 | - | [已弃用] 请使用 output_file |
None
from office.skills.pdf import add_mark
add_mark(input_file='./report.pdf', mark_str='机密')office.api.pdf.add_mark
2b1996b
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.