Categories

Image Blending Effect

Blend multiple images together using various blend modes for creative compositions and effects

Click to upload file or drag and drop file here

Maximum file size: 20MB Supported formats: image/jpeg, image/png, image/webp, image/gif, image/bmp, image/tiff

Base image that other images will be blended onto

Click to upload files or drag and drop files here

Maximum file size: 20MB Maximum files: 5
Supported formats: image/jpeg, image/png, image/webp, image/gif, image/bmp, image/tiff

Select 1-5 images to blend with the base image

Blend mode for combining images

Horizontal position of blend images relative to base image

Vertical position of blend images relative to base image

Scale factor for blend images (0.1 to 3.0)

0 1 1

Opacity of blend images (0.0 to 1.0)

Output format for the blended image

Output quality for lossy formats

API Documentation

Request Endpoint

POST /en/api/tools/image-add-blending

Request Parameters

Parameter Name Type Required Description
baseImage file (Upload required) Yes Base image that other images will be blended onto
blendImages file (Upload required) Yes Select 1-5 images to blend with the base image
blendMode select No Blend mode for combining images
positionX number No Horizontal position of blend images relative to base image
positionY number No Vertical position of blend images relative to base image
scale number No Scale factor for blend images (0.1 to 3.0)
opacity range No Opacity of blend images (0.0 to 1.0)
outputFormat select No Output format for the blended image
quality number No Output quality for lossy formats

File type parameters need to be uploaded first via POST /upload/image-add-blending to get filePath, then pass filePath to the corresponding file field.

Response Format

{
  "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)"
}
File: File

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-image-add-blending": {
      "name": "image-add-blending",
      "description": "Blend multiple images together using various blend modes for creative compositions and effects",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=image-add-blending",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

Supports URL file links or Base64 encoding for file parameters.

If you encounter any issues, please contact us at [email protected]