adjust_saturation
Modify image saturation levels by specifying a factor to enhance or reduce color intensity, or convert images to grayscale using the Image Processing MCP Server tool.
Instructions
调整图片饱和度
Input Schema
Name | Required | Description | Default |
---|---|---|---|
factor | Yes | 饱和度调整因子,1.0为原始饱和度,>1.0增强,<1.0减弱,0为灰度 | |
image_source | Yes | 图片源,可以是文件路径或base64编码的图片数据 |
Input Schema (JSON Schema)
{
"properties": {
"factor": {
"description": "饱和度调整因子,1.0为原始饱和度,>1.0增强,<1.0减弱,0为灰度",
"minimum": 0,
"title": "Factor",
"type": "number"
},
"image_source": {
"description": "图片源,可以是文件路径或base64编码的图片数据",
"title": "Image Source",
"type": "string"
}
},
"required": [
"image_source",
"factor"
],
"title": "adjust_saturationArguments",
"type": "object"
}