Parameters
Basic Parameters
Output
Usage Example
Recraft Text to Image Workflow Example
Recraft Text to Image Workflow Example
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Helper node for setting logo raster style in Recraft image generation
| Parameter | Type | Default | Description |
|---|---|---|---|
| substyle | Selection | - | Specific substyle for logo raster (Required) |
| Output | Type | Description |
|---|---|---|
| recraft_style | Recraft Style | Style configuration object, connects to Recraft generation node |
class RecraftStyleV3LogoRasterNode(RecraftStyleV3RealisticImageNode):
"""
Select vector_illustration style and optional substyle.
"""
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"substyle": (get_v3_substyles(s.RECRAFT_STYLE, include_none=False),),
}
}
RECRAFT_STYLE = RecraftStyleV3.logo_raster
Was this page helpful?