Documentation Index
Fetch the complete documentation index at: https://dripart-mintlify-e28287af.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
此节点创建一个风格配置对象,用于指导Recraft的图像生成过程朝向专业标志设计的视觉效果。通过选择不同的子风格,可以定义生成标志的设计风格、复杂度和适用场景。
参数说明
基本参数
| 参数 | 类型 | 默认值 | 说明 |
|---|
| substyle | 选择项 | - | Logo栅格风格的具体子风格(必选) |
| 输出 | 类型 | 说明 |
|---|
| recraft_style | Recraft Style | 风格配置对象,连接到Recraft生成节点 |
使用示例
Recraft Text to Image 工作流示例
Recraft Text to Image 工作流示例
源码参考
[节点源码 (更新于2025-05-03)]
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