create_gif
Generate animated GIFs by combining multiple images with customizable frame duration and loop settings using the Image Processing MCP Server.
Instructions
创建GIF动画
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | 每帧持续时间(毫秒) | |
image_sources | Yes | 图片源列表,每个元素可以是文件路径或base64编码的图片数据 | |
loop | No | 循环次数,0表示无限循环 |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"default": 500,
"description": "每帧持续时间(毫秒)",
"minimum": 50,
"title": "Duration",
"type": "integer"
},
"image_sources": {
"description": "图片源列表,每个元素可以是文件路径或base64编码的图片数据",
"items": {},
"title": "Image Sources",
"type": "array"
},
"loop": {
"default": 0,
"description": "循环次数,0表示无限循环",
"minimum": 0,
"title": "Loop",
"type": "integer"
}
},
"required": [
"image_sources"
],
"title": "create_gifArguments",
"type": "object"
}