Files
SnapOtter/apps/docs/zh-TW/tools/image/circle-crop.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

2.0 KiB
Raw Blame History

description, i18n_source_hash, i18n_provenance, i18n_output_hash
description i18n_source_hash i18n_provenance i18n_output_hash
將影像裁切為置中的圓形,並讓四角透明。 06c50ccd96b2 human f476bdd2646b

Circle Crop

將影像裁切為置中的圓形,並讓四角透明。支援可調整的縮放、偏移、邊框及輸出尺寸。

API Endpoint

POST /api/v1/tools/image/circle-crop

接受包含影像檔案及 JSON settings 欄位的 multipart form data。

Parameters

Parameter Type Required Default Description
zoom number No 1 縮放係數(1-5);數值越高裁切越緊
offsetX number No 0.5 水平中心位置(0-1
offsetY number No 0.5 垂直中心位置(0-1
borderWidth integer No 0 邊框寬度,以像素為單位(0-200
borderColor string No "#ffffff" 邊框十六進位色碼
background string No "transparent" 四角填充:"transparent" 或十六進位色碼
outputSize integer No - 最終方形尺寸,以像素為單位(16-4096)

Example Request

curl -X POST http://localhost:1349/api/v1/tools/image/circle-crop \
  -H "Authorization: Bearer si_your-api-key" \
  -F "file=@photo.jpg" \
  -F 'settings={"zoom": 1.2, "borderWidth": 4, "borderColor": "#333333"}'

Example Response

{
  "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "downloadUrl": "/api/v1/download/a1b2c3d4-e5f6-7890-abcd-ef1234567890/photo.png",
  "originalSize": 2450000,
  "processedSize": 185000
}

Notes

  • 輸出一律為 PNG 以保留透明的四角(除非 background 設為純色)。
  • 圓形會內接於影像較短的一邊。使用 zoom 裁切得更緊,並使用 offsetX/offsetY 移動可見區域。
  • 當提供 outputSize 時,結果會在裁切後調整為該方形尺寸。
  • HEIC、RAW、PSD 及 SVG 輸入會在處理前自動解碼。