Files
SnapOtter/apps/docs/zh-CN/tools/pdf/pdf-page-numbers.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

55 lines
1.5 KiB
Markdown

---
description: "为 PDF 的每一页添加页码。"
i18n_source_hash: 58342d6ac8d2
i18n_provenance: human
i18n_output_hash: c41c0a34a46d
---
# PDF Page Numbers {#pdf-page-numbers}
为 PDF 的每一页添加“Page N of M”页码。
## API Endpoint {#api-endpoint}
`POST /api/v1/tools/pdf/pdf-page-numbers`
接受包含一个 PDF 文件和一个 JSON `settings` 字段的 multipart 表单数据。
## Parameters {#parameters}
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| position | string | No | `"bc"` | 页码位置:`bl``bc``br``tl``tc``tr` |
| fontSize | integer | No | `10` | 以点为单位的字号(6-24) |
### Position Values {#position-values}
- `tl` 左上,`tc` 顶部居中,`tr` 右上
- `bl` 左下,`bc` 底部居中,`br` 右下
## Example Request {#example-request}
```bash
curl -X POST http://localhost:1349/api/v1/tools/pdf/pdf-page-numbers \
-H "Authorization: Bearer si_your-api-key" \
-F "file=@document.pdf" \
-F 'settings={"position": "bc", "fontSize": 12}'
```
## Example Response {#example-response}
```json
{
"jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"downloadUrl": "/api/v1/download/a1b2c3d4-e5f6-7890-abcd-ef1234567890/document.pdf",
"originalSize": 2450000,
"processedSize": 2470000
}
```
## Notes {#notes}
- 页码以“Page 1 of 10”的格式渲染。
- 页码会添加到每一页,包括任何现有的标题页或封面页。
- 默认位置 `"bc"` 会将页码放在每页的底部居中位置。