apply_sepia
Apply a vintage sepia tone filter to images. Input an image file path or base64 data to transform it into a warm, classic brownish hue using the Image Processing MCP Server.
Instructions
应用复古棕褐色滤镜
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_source | Yes | 图片源,可以是文件路径或base64编码的图片数据 |
Input Schema (JSON Schema)
{
"properties": {
"image_source": {
"description": "图片源,可以是文件路径或base64编码的图片数据",
"title": "Image Source",
"type": "string"
}
},
"required": [
"image_source"
],
"title": "apply_sepiaArguments",
"type": "object"
}