删除 PDF 文件中指定的页面。当用户提到 PDF 删除页、PDF 删页、删 PDF 页 时使用。
68
81%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
删除 PDF 文件中的指定页面
从 PDF 文件中删除指定的页面。
office/skills/pdf/del4pdf/
from office.skills.pdf import del4pdf
del4pdf(
input_file='./test.pdf',
output_file='./deleted.pdf',
page_nums=[0, 2]
)| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
input_file | str | 否 | - | PDF 文件路径 |
output_file | str | 否 | - | 输出 PDF 文件路径 |
page_nums | list | 否 | - | 要删除的页码列表 |
None
from office.skills.pdf import del4pdf
# 删除第 1 页和第 3 页
del4pdf(input_file='./report.pdf', output_file='./new.pdf', page_nums=[0, 2])https://www.python4office.cn/python-office/popdf/%E8%AF%BE%E7%A8%8B/9-del4pdf
office.api.pdf.del4pdf
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.