Files
SnapOtter/apps/docs/th/tools/image/split.md
T
SnapOtterandGitHub f858c4cea0 feat: clearer, disambiguated tool names across all surfaces (#520)
Renames 18 ambiguous or hard-to-search tool names so image tools self-qualify like the other modalities ("Compress" becomes "Compress Image"), and cleans up a few awkward names. Propagated across search (constants.ts), display (en.ts + 20 locales), the OpenAPI base spec + 20 locale specs, and the docs tool-page headings in 21 languages. Removes the duplicate "Normalize Audio" summary shared by the video and audio endpoints. Tool ids and routes are unchanged, so no API paths or bookmarks break.
2026-07-15 21:55:51 +08:00

3.8 KiB

description, i18n_source_hash, i18n_provenance, i18n_output_hash
description i18n_source_hash i18n_provenance i18n_output_hash
แบ่งภาพหนึ่งภาพออกเป็นไทล์แบบตารางตามจำนวนแถวและคอลัมน์ หรือตามขนาดพิกเซล คืนค่าเป็นไฟล์ ZIP 838f5fa791b0 human 1e134c68d446

แบ่งภาพ

แบ่งภาพเดียวออกเป็นไทล์แบบตารางตามจำนวนคอลัมน์/แถว หรือตามขนาดพิกเซลที่กำหนด คืนค่าเป็นไฟล์ ZIP ที่มีไทล์ทั้งหมด

API Endpoint

POST /api/v1/tools/image/split

Parameters

Parameter Type Required Default Description
columns integer No 3 จำนวนคอลัมน์ที่จะแบ่ง (1 ถึง 100)
rows integer No 3 จำนวนแถวที่จะแบ่ง (1 ถึง 100)
tileWidth integer No - ความกว้างไทล์เป็นพิกเซล (ต่ำสุด 10) จะแทนที่ columns เมื่อกำหนดทั้ง tileWidth และ tileHeight
tileHeight integer No - ความสูงไทล์เป็นพิกเซล (ต่ำสุด 10) จะแทนที่ rows เมื่อกำหนดทั้ง tileWidth และ tileHeight
outputFormat string No "original" รูปแบบผลลัพธ์สำหรับไทล์: original, png, jpg, webp, avif, jxl
quality number No 90 คุณภาพผลลัพธ์สำหรับรูปแบบแบบสูญเสียข้อมูล (1 ถึง 100)

Example Request

curl -X POST http://localhost:1349/api/v1/tools/image/split \
  -F "file=@large-image.png" \
  -F 'settings={"columns":3,"rows":3,"outputFormat":"png"}' \
  --output split-tiles.zip

Example Response

การตอบกลับจะสตรีมออกมาโดยตรงเป็นไฟล์ ZIP พร้อม Content-Type: application/zip ชื่อไฟล์เป็นไปตามรูปแบบ split-<jobId>.zip

แต่ละไทล์ภายใน ZIP ตั้งชื่อเป็น <originalBaseName>_r<row>_c<col>.<ext> (เช่น photo_r1_c1.png, photo_r2_c3.webp)

Notes

  • รับไฟล์ภาพเพียงไฟล์เดียว
  • รองรับรูปแบบไฟล์นำเข้า HEIC, RAW, PSD และ SVG (ถอดรหัสอัตโนมัติ)
  • เมื่อกำหนดทั้ง tileWidth และ tileHeight ค่าเหล่านี้จะมีความสำคัญเหนือกว่า columns/rows ขนาดตารางจะคำนวณเป็น ceil(imageWidth / tileWidth) และ ceil(imageHeight / tileHeight)
  • ไทล์ขอบ (คอลัมน์ขวาสุด แถวล่างสุด) อาจมีขนาดเล็กกว่าขนาดไทล์ที่ระบุ หากขนาดภาพหารไม่ลงตัว
  • ขนาดตารางสูงสุดถูกจำกัดไว้ที่ 100x100 (10,000 ไทล์)
  • การตอบกลับจะสตรีม ZIP ออกมาโดยตรง จึงไม่มี body การตอบกลับแบบ JSON ใช้ --output กับ curl เพื่อบันทึกไฟล์