flip_image
Flip images horizontally or vertically using 'flip_image' on the Image Processing MCP Server. Input an image source and specify the direction for precise transformations.
Instructions
翻转图片
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | Yes | 翻转方向:horizontal(水平翻转)或 vertical(垂直翻转) | |
image_source | Yes | 图片源,可以是文件路径或base64编码的图片数据 |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"description": "翻转方向:horizontal(水平翻转)或 vertical(垂直翻转)",
"title": "Direction",
"type": "string"
},
"image_source": {
"description": "图片源,可以是文件路径或base64编码的图片数据",
"title": "Image Source",
"type": "string"
}
},
"required": [
"image_source",
"direction"
],
"title": "flip_imageArguments",
"type": "object"
}