パラメータ
基本パラメータ
出力
使用例
Recraft Text to Image ワークフローの例
Recraft Text to Image ワークフローの例
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Recraft による画像生成でロゴのラスタースタイルを設定するための補助ノード
| パラメータ | 型 | デフォルト | 説明 |
|---|---|---|---|
| substyle | 選択肢 | - | ロゴラスタースタイルの特定のサブスタイル(必須) |
| 出力 | 型 | 説明 |
|---|---|---|
| recraft_style | Recraft Style | スタイル設定オブジェクト。Recraft 生成ノードへ接続します |
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