adjust_opacity
Modify image transparency using a numeric opacity value ranging from 0.0 (fully transparent) to 1.0 (fully opaque) via the Image Processing MCP Server.
Instructions
调整图片不透明度
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_source | Yes | 图片源,可以是文件路径或base64编码的图片数据 | |
opacity | Yes | 不透明度,范围 0.0-1.0,0.0为完全透明,1.0为完全不透明 |
Input Schema (JSON Schema)
{
"properties": {
"image_source": {
"description": "图片源,可以是文件路径或base64编码的图片数据",
"title": "Image Source",
"type": "string"
},
"opacity": {
"description": "不透明度,范围 0.0-1.0,0.0为完全透明,1.0为完全不透明",
"maximum": 1,
"minimum": 0,
"title": "Opacity",
"type": "number"
}
},
"required": [
"image_source",
"opacity"
],
"title": "adjust_opacityArguments",
"type": "object"
}