Files
SnapOtter/apps/docs/zh-TW/tools/files/html-to-pdf.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

47 lines
1.2 KiB
Markdown

---
description: "將 HTML 檔案轉換為 PDF。"
i18n_source_hash: 20b9ae147db5
i18n_provenance: human
i18n_output_hash: 35aea922dbe5
---
# HTML 轉 PDF {#html-to-pdf}
將 HTML 檔案轉換為帶樣式的 PDF 文件。為了保護隱私,遠端資源(外部影像、樣式表、指令碼)會被停用。
## API Endpoint {#api-endpoint}
`POST /api/v1/tools/files/html-to-pdf`
接受包含一個 HTML 檔案的 multipart form data。
## Parameters {#parameters}
此工具沒有可設定的參數。上傳 HTML 檔案,它就會被轉換為 PDF。
## Example Request {#example-request}
```bash
curl -X POST http://localhost:1349/api/v1/tools/files/html-to-pdf \
-H "Authorization: Bearer si_your-api-key" \
-F "file=@page.html"
```
## Example Response {#example-response}
回傳 `202 Accepted`。透過 `/api/v1/jobs/{jobId}/progress` 的 SSE 追蹤進度。
```json
{
"jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"async": true
}
```
## Notes {#notes}
- 接受的輸入格式:`.html``.htm`
- 為了保護隱私與安全,遠端資源(透過 URL 引用的影像、樣式表、指令碼)不會被抓取。
- 內嵌樣式與內嵌影像(data URI)會被保留。
- 轉換由伺服器上的 WeasyPrint 處理。