Generate Image V2
Description
Connection
Name
Description
Required
Category
Input Schema
{
"description": "Generate image node input.",
"properties": {
"prompt": {
"description": "What you wish to see in the output image. A strong, descriptive prompt that clearly defines elements, colors, and subjects will lead to better results.",
"title": "Prompt",
"type": "string"
},
"negative_prompt": {
"description": "A blurb of text describing what you do not wish to see in the output image.",
"title": "Negative Prompt",
"type": "string"
},
"guidance_scale": {
"default": 8,
"description": "The guidance scale of the generated image.",
"exclusiveMinimum": 0,
"maximum": 15,
"title": "Guidance scale",
"type": "number"
},
"steps": {
"default": 20,
"description": "The number of steps to take in the generated image.",
"exclusiveMinimum": 0,
"maximum": 50,
"title": "Steps",
"type": "integer"
},
"batch_size": {
"default": 1,
"description": "The number of images to generate in a batch.",
"exclusiveMinimum": 0,
"maximum": 8,
"title": "Batch size",
"type": "integer"
},
"seed": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "The seed to use for the generated image.",
"title": "Seed"
},
"aspect_ratio": {
"default": "9:16_HD",
"description": "The aspect ratio of the generated image.",
"enum": [
"1:1",
"3:4",
"4:3",
"9:16",
"16:9",
"1:1_HD",
"3:4_HD",
"4:3_HD",
"9:16_HD",
"16:9_HD",
"1:1_FHD",
"3:4_FHD",
"4:3_FHD",
"9:16_FHD",
"16:9_FHD"
],
"title": "Aspect ratio",
"type": "string"
}
},
"required": [
"prompt",
"negative_prompt"
],
"title": "GenerateImageV2NodeInput",
"type": "object"
}Output Schema
How It Works
Usage Examples
Example 1: Professional Product Photography
Example 2: Social Media Marketing Visual
Example 3: Concept Art for Game Development
Common Use Cases
Error Handling
Error Type
Cause
Solution
Notes
Last updated