Development
English
为Recraft图像生成设置Logo栅格风格的辅助节点
此节点创建一个风格配置对象,用于指导Recraft的图像生成过程朝向专业标志设计的视觉效果。通过选择不同的子风格,可以定义生成标志的设计风格、复杂度和适用场景。
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
Was this page helpful?