Design
使用各种混合模式将多张图像混合在一起,创建创意合成和效果
用三种语言从你的代码中调用此工具。
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/image-add-blending' \
-H 'Content-Type: application/json' \
-d '{"filename":"baseImage.ext","contentType":"application/octet-stream","size":12345}'
curl -X POST 'https://api.elysiatools.com/api/upload/presign/image-add-blending' \
-H 'Content-Type: application/json' \
-d '{"filename":"blendImages.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/zh/api/tools/image-add-blending' \
-F 'baseImage=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'blendImages=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'blendMode=over' \
-F 'positionX=0' \
-F 'positionY=0' \
-F 'scale=1' \
-F 'opacity=1' \
-F 'outputFormat=png' \
-F 'quality=90'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/image-add-blending| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| baseImage | file需先上传 | 是 | 其他图像将混合到的基础图像 |
| blendImages | file需先上传 | 是 | 选择1-5张图像与基础图像混合 |
| blendMode | select | 否 | 组合图像的混合模式 |
| positionX | number | 否 | 混合图像相对于基础图像的水平位置 |
| positionY | number | 否 | 混合图像相对于基础图像的垂直位置 |
| scale | number | 否 | 混合图像的缩放因子(0.1到3.0) |
| opacity | range | 否 | 混合图像的不透明度(0.0到1.0) |
| outputFormat | select | 否 | 混合图像的输出格式 |
| quality | number | 否 | 有损格式的输出质量 |
文件结果
{
"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)"
}将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-image-add-blending": {
"name": "image-add-blending",
"description": "使用各种混合模式将多张图像混合在一起,创建创意合成和效果",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-add-blending",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "image-add-blending",
"arguments": {
"baseImage": "https://example.com/file.ext",
"blendImages": "https://example.com/file.ext",
"blendMode": "over",
"positionX": 0,
"positionY": 0,
"scale": 1,
"opacity": 1,
"outputFormat": "png",
"quality": 90
}
}
}有问题或反馈?请联系 [email protected]