pdf

仓库创建 2026年3月18日最近提交 1 天前SkillHot 收录 6 小时前
▸ 精选理由

覆盖日常几乎所有 PDF 操作,适合自动化文档流程

▸ 风险提示

可能依赖第三方库或命令行工具,需额外安装

这个 Skill 做什么

通用 PDF 处理集:提取、合并、拆分、填写表单与加密等功能

做 PDF 的一站式操作:读提取文字/表格、合并与拆分、旋转、加水印、填表单、加解密、抽图和对扫描件做 OCR 变成可搜索的文本。只要用户提到 .pdf 文件或要生成 PDF 就用,能处理从简单合并到复杂表单填充和图片识别的需求。优点是功能全、包含 OCR 与表单支持,适合各种文档处理场景。

▸ 展开 SKILL.md 英文原文

Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.

办公文档PDF处理合并拆分表单加密通用
0
Stars
0
Forks
23
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Await-d/OpenAWork/main/packages/resources/resources/skills/reference/pdf/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Await-d/OpenAWork/main/packages/resources/resources/skills/reference/pdf/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# PDF Processing Guide

## Overview

This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions.

## Quick Start

```python
from pypdf import PdfReader, PdfWriter

# Read a PDF
reader = PdfReader("document.pdf")
print(f"Pages: {len(reader.pages)}")

# Extract text
text = ""
for page in reader.pages:
    text += page.extract_text()
```

## Python Libraries

### pypdf - Basic Operations

#### Merge PDFs
```python
from pypdf import PdfWriter, PdfReader

writer = PdfWriter()
for pdf_file in ["
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有