此节点创建一个风格配置对象,用于指导Recraft的图像生成过程朝向专业标志设计的视觉效果。通过选择不同的子风格,可以定义生成标志的设计风格、复杂度和适用场景。

参数说明

基本参数

参数类型默认值说明
substyle选择项-Logo栅格风格的具体子风格(必选)

输出

输出类型说明
recraft_styleRecraft 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