feat(i18n): 21-language pipeline, landing/docs/API wiring, landing+API translations

Shared Claude Code translation pipeline (scripts/i18n, no API key) plus Astro/VitePress/Scalar i18n wiring. Landing and API reference translated into all 20 languages; docs i18n wiring + English source anchors. The translated docs markdown (apps/docs/<locale>/**, 3,620 files) follows in a companion PR because it exceeds GitHub's per-PR CI file limit.
This commit is contained in:
SnapOtter
2026-07-11 13:01:55 +08:00
committed by GitHub
parent 2e91368816
commit 00b651c9f8
353 changed files with 564607 additions and 2594 deletions
+7 -7
View File
@@ -2,24 +2,24 @@
description: Apply a pixelation effect to the full image or a specific region.
---
# Pixelate
# Pixelate {#pixelate}
Apply a pixelation effect to an entire image or a specific rectangular region. Useful for obscuring sensitive content like faces, license plates, or personal information.
## API Endpoint
## API Endpoint {#api-endpoint}
`POST /api/v1/tools/image/pixelate`
Accepts multipart form data with an image file and a JSON `settings` field.
## Parameters
## Parameters {#parameters}
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| blockSize | integer | No | `12` | Pixel block size (2-128); larger values produce coarser pixelation |
| region | object | No | - | Restrict pixelation to a rectangle (see below) |
### Region Object
### Region Object {#region-object}
| Field | Type | Required | Description |
|-------|------|----------|-------------|
@@ -28,7 +28,7 @@ Accepts multipart form data with an image file and a JSON `settings` field.
| width | integer | Yes | Region width in pixels (>= 1) |
| height | integer | Yes | Region height in pixels (>= 1) |
## Example Request
## Example Request {#example-request}
Pixelate the full image:
@@ -48,7 +48,7 @@ curl -X POST http://localhost:1349/api/v1/tools/image/pixelate \
-F 'settings={"blockSize": 16, "region": {"left": 100, "top": 50, "width": 200, "height": 150}}'
```
## Example Response
## Example Response {#example-response}
```json
{
@@ -59,7 +59,7 @@ curl -X POST http://localhost:1349/api/v1/tools/image/pixelate \
}
```
## Notes
## Notes {#notes}
- When `region` is omitted, the entire image is pixelated.
- The region coordinates are in pixels relative to the top-left corner of the image. The region must fall within the image bounds.