Media
Batch crop multiple images to specific dimensions or aspect ratios with custom positioning. Returns cropped images as a ZIP download.
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/image-batch-crop' \
-F 'file=@/path/to/imageFiles.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-batch-crop' \
-F 'imageFiles=photo.jpg' \
-F 'cropMode=square' \
-F 'aspectRatio=16:9' \
-F 'width=0' \
-F 'height=0' \
-F 'gravity=center' \
-F 'x=0' \
-F 'y=0' \
-F 'format=original' \
-F 'quality=90' \
-F 'keepOriginalNames=true'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/image-batch-crop| Name | Type | Required | Description |
|---|---|---|---|
| imageFiles | fileupload required | Yes | — |
| cropMode | select | Yes | Choose how to crop images: square, aspect ratio, exact dimensions, or custom positioning |
| aspectRatio | select | No | Select a predefined aspect ratio for cropping |
| width | number | No | Set the exact width for cropped area |
| height | number | No | Set the exact height for cropped area |
| gravity | select | No | Choose where to position the crop area |
| x | number | No | Set the horizontal position for crop area (0 = left edge) |
| y | number | No | Set the vertical position for crop area (0 = top edge) |
| format | select | No | Choose output format or keep original |
| quality | number | No | Output quality for lossy formats |
| keepOriginalNames | checkbox | No | — |
File result
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-image-batch-crop": {
"name": "image-batch-crop",
"description": "Batch crop multiple images to specific dimensions or aspect ratios with custom positioning. Returns cropped images as a ZIP download.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-batch-crop",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "image-batch-crop",
"arguments": {
"imageFiles": [
"photo.jpg"
],
"cropMode": "square",
"aspectRatio": "16:9",
"width": 0,
"height": 0,
"gravity": "center",
"x": 0,
"y": 0,
"format": "original",
"quality": 90,
"keepOriginalNames": true
}
}
}Questions or issues? Contact [email protected]