Files
SnapOtter/apps/docs/zh-CN/tools/pdf/pdf-to-word.md
T
SnapOtterandGitHub 4963ab3bbd feat(docs-i18n): translate all documentation into 20 languages
All 181 docs markdown files translated into 20 languages (apps/docs/<locale>/**). Companion to the i18n code PR; admin-merged because the file count exceeds GitHub's per-PR CI trigger limit. Validated by pnpm i18n:check (all surfaces, 0 stale/missing) and a clean all-locale docs build.
2026-07-11 13:52:47 +08:00

1.3 KiB

description, i18n_source_hash, i18n_provenance, i18n_output_hash
description i18n_source_hash i18n_provenance i18n_output_hash
将 PDF 转换为 Word 文档(DOCX)。 be41b6b49f84 human 2fc4c695a99e

PDF to Word

将基于文本的 PDF 转换为 Word 文档(DOCX)。最适合具有可选择文本的 PDF;扫描页面需要先进行 OCR。

API Endpoint

POST /api/v1/tools/pdf/pdf-to-word

接受包含一个 PDF 文件的 multipart 表单数据。

Parameters

此工具没有可配置参数。上传 PDF,它将被转换为 DOCX。

Example Request

curl -X POST http://localhost:1349/api/v1/tools/pdf/pdf-to-word \
  -H "Authorization: Bearer si_your-api-key" \
  -F "file=@report.pdf"

Example Response

返回 202 Accepted。通过 SSE 在 /api/v1/jobs/{jobId}/progress 跟踪进度。

{
  "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "async": true
}

Notes

  • 接受的输入格式:.pdf
  • 对基于文本的 PDF 效果最佳。扫描页或纯图像页会生成空的或极少的输出;请先使用 PDF OCR 添加文本层。
  • 转换由服务器上无头运行的 LibreOffice 处理。
  • 复杂版式(多栏、重叠元素)可能无法完美转换。