Search K
PDF Page Numbers
为 PDF 的每一页添加“Page N of M”页码。
API Endpoint
POST /api/v1/tools/pdf/pdf-page-numbers
接受包含一个 PDF 文件和一个 JSON settings 字段的 multipart 表单数据。
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| position | string | No | "bc" | 页码位置:bl、bc、br、tl、tc、tr |
| fontSize | integer | No | 10 | 以点为单位的字号(6-24) |
Position Values
tl左上,tc顶部居中,tr右上bl左下,bc底部居中,br右下
Example Request
bash
curl -X POST http://localhost:1349/api/v1/tools/pdf/pdf-page-numbers \
-H "Authorization: Bearer si_your-api-key" \
-F "[email protected]" \
-F 'settings={"position": "bc", "fontSize": 12}'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
- 页码以“Page 1 of 10”的格式渲染。
- 页码会添加到每一页,包括任何现有的标题页或封面页。
- 默认位置
"bc"会将页码放在每页的底部居中位置。
