Design
Apply perspective transformation for 3D-like effects and perspective correction
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-perspective' \
-F 'file=@/path/to/imageFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/image-perspective' \
-F 'imageFile=/path/to/file.ext' \
-F 'topLeftX=224' \
-F 'topLeftY=96' \
-F 'topRightX=461' \
-F 'topRightY=192' \
-F 'bottomLeftX=64' \
-F 'bottomLeftY=931' \
-F 'bottomRightX=589' \
-F 'bottomRightY=835' \
-F 'background=transparent' \
-F 'format=png' \
-F 'quality=95'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-perspective| Name | Type | Required | Description |
|---|---|---|---|
| imageFile | fileupload required | Yes | Upload any image file (JPEG, PNG, WebP, GIF, BMP, TIFF) for perspective transformation |
| topLeftX | number | No | X coordinate of the top-left corner in the output |
| topLeftY | number | No | Y coordinate of the top-left corner in the output |
| topRightX | number | No | X coordinate of the top-right corner in the output |
| topRightY | number | No | Y coordinate of the top-right corner in the output |
| bottomLeftX | number | No | X coordinate of the bottom-left corner in the output |
| bottomLeftY | number | No | Y coordinate of the bottom-left corner in the output |
| bottomRightX | number | No | X coordinate of the bottom-right corner in the output |
| bottomRightY | number | No | Y coordinate of the bottom-right corner in the output |
| background | text | No | Background color for empty areas (hex #RRGGBB or #RRGGBBAA, or color name) |
| format | select | No | Output format for the result image (PNG recommended for transparency) |
| quality | number | No | Output quality for lossy formats |
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-perspective": {
"name": "image-perspective",
"description": "Apply perspective transformation for 3D-like effects and perspective correction",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-perspective",
"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-perspective",
"arguments": {
"imageFile": "https://example.com/file.ext",
"topLeftX": 224,
"topLeftY": 96,
"topRightX": 461,
"topRightY": 192,
"bottomLeftX": 64,
"bottomLeftY": 931,
"bottomRightX": 589,
"bottomRightY": 835,
"background": "transparent",
"format": "png",
"quality": 95
}
}
}Questions or issues? Contact [email protected]