generate-image
Create custom images using specific text, illustration elements, colors, and aspect ratios to meet visual content needs with JiMeng AI technology.
Instructions
当用户需要生成图片时使用的工具
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | Yes | 图片的背景主色调 | |
illustration | Yes | 根据用户要显示的文字,提取3-5个可以作为图片配饰的插画元素关键词 | |
ratio | Yes | 图片比例。支持: 4:3 (512*384), 3:4 (384*512), 16:9 (512*288), 9:16 (288*512) | |
text | Yes | 用户需要在图片上显示的文字 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"description": "图片的背景主色调",
"type": "string"
},
"illustration": {
"description": "根据用户要显示的文字,提取3-5个可以作为图片配饰的插画元素关键词",
"type": "string"
},
"ratio": {
"description": "图片比例。支持: 4:3 (512*384), 3:4 (384*512), 16:9 (512*288), 9:16 (288*512)",
"enum": [
"4:3",
"3:4",
"16:9",
"9:16"
],
"type": "string"
},
"text": {
"description": "用户需要在图片上显示的文字",
"type": "string"
}
},
"required": [
"text",
"illustration",
"color",
"ratio"
],
"type": "object"
}