This page was machine-translated. Spotted a mistake?Help improve it.
Skip to content

AI Canvas Expand

以 AI 驅動的填補(外延繪製)擴展影像畫布。可朝任意方向延伸影像,並以與現有影像相符的 AI 生成內容填補新區域。

API Endpoint

POST /api/v1/tools/image/ai-canvas-expand

處理方式: 非同步(回傳 202,透過 SSE 輪詢 /api/v1/jobs/{jobId}/progress 取得狀態)

模型套件: object-eraser-colorize(1-2 GB)

Parameters

ParameterTypeRequiredDefaultDescription
filefileYes-影像檔案(multipart)
extendTopintegerNo0頂部延伸的像素數
extendRightintegerNo0右側延伸的像素數
extendBottomintegerNo0底部延伸的像素數
extendLeftintegerNo0左側延伸的像素數
tierstringNo"balanced"品質等級:fastbalancedhigh
formatstringNo"auto"輸出格式:autopngjpgjpegwebptiffgifavifheicheifjxl
qualityintegerNo95輸出品質(1-100)

至少要有一個延伸方向大於 0。

Example Request

bash
curl -X POST http://localhost:1349/api/v1/tools/image/ai-canvas-expand \
  -F "[email protected]" \
  -F 'settings={"extendTop":200,"extendBottom":200,"extendLeft":100,"extendRight":100,"tier":"balanced"}'

Response

Initial Response (202 Accepted)

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

Progress (SSE at /api/v1/jobs/{jobId}/progress)

event: progress
data: {"phase":"processing","stage":"Expanding canvas...","percent":50}

Final Result (via SSE)

json
{
  "phase": "complete",
  "percent": 100,
  "result": {
    "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "downloadUrl": "/api/v1/download/{jobId}/photo_extended.png",
    "previewUrl": "/api/v1/download/{jobId}/preview.webp",
    "originalSize": 300000,
    "processedSize": 520000
  }
}

Notes

  • 需要安裝 object-eraser-colorize 模型套件(1-2 GB)。
  • 使用基於 LaMa 的外延繪製,為擴展區域生成內容。
  • tier 參數在速度與品質之間取捨:fast 能快速產生結果但可能有瑕疵,high 耗時較久但能產生更平滑、更連貫的填補。
  • 延伸值以像素為單位。最終影像尺寸為:原始寬度 + extendLeft + extendRight,乘以 原始高度 + extendTop + extendBottom。
  • 對於無法在瀏覽器預覽的輸出格式(HEIC、JXL、TIFF),會在主要輸出旁一併產生 WebP 預覽。
  • 透過自動解碼支援 HEIC/HEIF、RAW、TGA、PSD、EXR 及 HDR 輸入格式。