diff --git a/docs.json b/docs.json index e0b3441f4..a54c65dea 100644 --- a/docs.json +++ b/docs.json @@ -433,6 +433,12 @@ "tutorials/partner-nodes/recraft/recraft-text-to-image" ] }, + { + "group": "Krea 2", + "pages": [ + "tutorials/partner-nodes/krea2/krea2-t2i" + ] + }, { "group": "Kling", "pages": [ @@ -2859,6 +2865,12 @@ "zh/tutorials/partner-nodes/recraft/recraft-text-to-image" ] }, + { + "group": "Krea 2", + "pages": [ + "zh/tutorials/partner-nodes/krea2/krea2-t2i" + ] + }, { "group": "Kling", "pages": [ @@ -5290,6 +5302,12 @@ "ja/tutorials/partner-nodes/recraft/recraft-text-to-image" ] }, + { + "group": "Krea 2", + "pages": [ + "ja/tutorials/partner-nodes/krea2/krea2-t2i" + ] + }, { "group": "Kling", "pages": [ @@ -7583,4 +7601,4 @@ "destination": "/zh/:slug*" } ] -} +} \ No newline at end of file diff --git a/ja/tutorials/partner-nodes/krea2/krea2-t2i.mdx b/ja/tutorials/partner-nodes/krea2/krea2-t2i.mdx new file mode 100644 index 000000000..ee1a53717 --- /dev/null +++ b/ja/tutorials/partner-nodes/krea2/krea2-t2i.mdx @@ -0,0 +1,91 @@ +--- +title: "Krea 2 テキストから画像 Partner Nodes ComfyUI 公式例" +description: "ComfyUI で Krea 2 Text to Image Partner Node を使用する方法を解説します" +sidebarTitle: "Krea 2 テキストから画像" +--- + +import ReqHint from "/snippets/ja/tutorials/partner-nodes/req-hint.mdx"; +import UpdateReminder from "/snippets/ja/tutorials/update-reminder.mdx"; + +[Krea 2 Image Node](/ja/built-in-nodes/Krea2ImageNode) を使用すると、Krea AI の次世代モデルを活用して、テキストプロンプトから高品質な画像を生成できます。**Krea 2 Medium**(表現豊かなイラスト向け)と **Krea 2 Large**(表現豊かなフォトリアリズム向け)の 2 つのモデルバリアントをサポートし、オプションでムードボードやスタイルリファレンスを入力できます。 + +このガイドでは、Krea 2 を使用したテキストから画像生成のワークフローを紹介します。 + + + + + + + Comfy Cloud を開く + + + JSON をダウンロード、またはテンプレートライブラリで "Krea2" を検索 + + + +## Krea 2 Image ノードドキュメント + +詳細なパラメータ設定については、以下のドキュメントを参照してください: + + + Krea 2 Image Partner Node ドキュメント + + + + Krea 2 Style Reference Partner Node ドキュメント + + +## Krea 2 テキストから画像ワークフロー + +Krea 2 テキストから画像ワークフロー + +### 実行手順 + +1. **プロンプトを入力** — **Krea2ImageNode** ノードにテキスト説明を入力します +2. **モデルバリアントを選択** — **Krea 2 Medium**(イラスト)または **Krea 2 Large**(フォトリアリズム) +3. **パラメータを調整** — アスペクト比、解像度、クリエイティビティレベル、シード値を設定 +4. **実行** — `Ctrl+Enter` または Queue ボタンをクリックして生成 +5. **結果を確認** — 生成された画像は **SaveImage** ノードに表示され、`ComfyUI/output/` に保存 + +### ノードパラメータ + +| パラメータ | 説明 | +|---|---| +| `prompt` | 生成したい画像のテキスト説明 | +| `model` | Krea 2 Medium(イラスト)または Krea 2 Large(フォトリアリズム) | +| `aspect_ratio` | 生成画像のアスペクト比 | +| `resolution` | 出力解像度(1K、2K など) | +| `creativity` | 生成のクリエイティビティレベル | +| `moodboard_id` | オプション:Krea ムードボードの UUID | +| `moodboard_strength` | オプション:ムードボードの影響度(デフォルト 0.35) | +| `seed` | 再現性のためのシード値 | + +## Krea 2 スタイルリファレンスワークフロー + +Krea 2 スタイルリファレンスワークフロー + +スタイルリファレンスワークフローでは、1 枚以上のリファレンス画像をアップロードして美的スタイル、ムード、ビジュアルの方向性を定義します。生成される画像はプロンプトに沿いながら、リファレンス画像のスタイルが適用されます。 + + + + Comfy Cloud を開く + + + JSON をダウンロード、またはテンプレートライブラリで "Krea 2: Style Reference" を検索 + + + +### 実行手順 + +1. **リファレンス画像をアップロード** — **LoadImage** ノードでスタイルリファレンス画像を読み込みます(最大 10 枚) +2. **プロンプトを入力** — **Krea2ImageNode** で生成したいシーンを説明 +3. **モデルバリアントを選択** — Medium または Large を選択 +4. **スタイル強度を調整** — **Krea2StyleReferenceNode** ノードでスタイルリファレンスの強度を調整 +5. **実行** — `Ctrl+Enter` で生成 +6. **結果を確認** — **SaveImage** ノードで生成画像を確認 + +### 補足 + +- Krea 2 Image ノードは最大 **10 枚のスタイルリファレンス画像**を同時にサポート +- `moodboard_id` パラメータには有効な Krea ムードボード UUID が必要 +- Krea 2 は **Comfy Cloud** および **Comfy Desktop**(Partner Node サブスクリプション)で利用可能 diff --git a/tutorials/partner-nodes/krea2/krea2-t2i.mdx b/tutorials/partner-nodes/krea2/krea2-t2i.mdx new file mode 100644 index 000000000..e814bd0e5 --- /dev/null +++ b/tutorials/partner-nodes/krea2/krea2-t2i.mdx @@ -0,0 +1,91 @@ +--- +title: "Krea 2 Text to Image Partner Nodes ComfyUI Official Example" +description: "This guide explains how to use the Krea 2 Text to Image Partner node in ComfyUI" +sidebarTitle: "Krea 2 Text to Image" +--- + +import ReqHint from "/snippets/tutorials/partner-nodes/req-hint.mdx"; +import UpdateReminder from "/snippets/tutorials/update-reminder.mdx"; + +The [Krea 2 Image Node](/built-in-nodes/Krea2ImageNode) allows you to generate high-quality images from text prompts using Krea AI's next-generation model. It supports two model variants — **Krea 2 Medium** for expressive illustrations and **Krea 2 Large** for expressive photorealism — with optional moodboard and style reference inputs. + +In this guide, we'll show you how to set up workflows for text-to-image generation using Krea 2. + + + + + + + Open in Comfy Cloud + + + Download JSON or search "Krea2" in Template Library + + + +## Krea 2 Image Node Documentation + +You can refer to the following documentation for detailed parameter settings: + + + Krea 2 Image Partner Node Documentation + + + + Krea 2 Style Reference Partner Node Documentation + + +## Krea 2 Text to Image Workflow + +Krea 2 Text to Image Workflow + +### Steps to Run + +1. **Enter your prompt** — type a text description in the **Krea2ImageNode** node +2. **Select a model variant** — choose between **Krea 2 Medium** (expressive illustrations) or **Krea 2 Large** (expressive photorealism) +3. **Adjust parameters** — set aspect ratio, resolution, creativity level, and seed +4. **Click Queue** — press `Ctrl+Enter` or click the Queue button to generate +5. **View result** — the generated image appears in the **SaveImage** node, saved to `ComfyUI/output/` + +### Node Parameters + +| Parameter | Description | +|---|---| +| `prompt` | Text description of the desired image | +| `model` | Krea 2 Medium (illustrations) or Krea 2 Large (photorealism) | +| `aspect_ratio` | Aspect ratio for the generated image | +| `resolution` | Output resolution (1K, 2K, etc.) | +| `creativity` | Controls the creativity level of the generation | +| `moodboard_id` | Optional: UUID of a Krea moodboard to influence the result | +| `moodboard_strength` | Optional: Strength of the moodboard influence (default: 0.35) | +| `seed` | Random seed for reproducible results | + +## Krea 2 Style Reference Workflow + +Krea 2 Style Reference Workflow + +The Style Reference workflow adds an extra step: upload one or more reference images that define the aesthetic style, mood, and visual direction. The generated image will match your prompt while applying the style from your reference images. + + + + Open in Comfy Cloud + + + Download JSON or search "Krea 2: Style Reference" in Template Library + + + +### Steps to Run + +1. **Upload reference images** — use the **LoadImage** nodes to load style reference images (supports up to 10) +2. **Enter your prompt** — describe the scene you want in the **Krea2ImageNode** +3. **Select a model variant** — choose between Medium and Large +4. **Adjust style strength** — modify the style reference strength in the **Krea2StyleReferenceNode** nodes +5. **Click Queue** — press `Ctrl+Enter` to generate +6. **View result** — the generated image appears in the **SaveImage** node + +### Additional Notes + +- The Krea 2 Image node supports up to **10 style reference images** simultaneously +- The `moodboard_id` parameter requires a valid UUID from a Krea moodboard +- Krea 2 is available in **Comfy Cloud** and through the **Comfy Desktop** app with a Partner Node subscription diff --git a/zh/tutorials/partner-nodes/krea2/krea2-t2i.mdx b/zh/tutorials/partner-nodes/krea2/krea2-t2i.mdx new file mode 100644 index 000000000..10d48f51b --- /dev/null +++ b/zh/tutorials/partner-nodes/krea2/krea2-t2i.mdx @@ -0,0 +1,91 @@ +--- +title: "Krea 2 文生图 Partner Nodes ComfyUI 官方示例" +description: "本指南介绍如何在 ComfyUI 中使用 Krea 2 文生图 Partner Node" +sidebarTitle: "Krea 2 文生图" +--- + +import ReqHint from "/snippets/zh/tutorials/partner-nodes/req-hint.mdx"; +import UpdateReminder from "/snippets/zh/tutorials/update-reminder.mdx"; + +[Krea 2 Image Node](/zh/built-in-nodes/Krea2ImageNode) 可让你使用 Krea AI 新一代模型,通过文本提示直接生成高质量图片。它支持两种模型变体——**Krea 2 Medium**(适合表现力丰富的插画)和 **Krea 2 Large**(适合表现力丰富的照片级真实感)——并可选配 moodboard 和风格参考输入。 + +在本指南中,我们将展示如何使用 Krea 2 搭建文生图工作流。 + + + + + + + 打开 Comfy Cloud + + + 下载 JSON 或在模板库中搜索 "Krea2" + + + +## Krea 2 Image 节点文档 + +请参阅以下文档了解详细参数设置: + + + Krea 2 Image Partner Node 文档 + + + + Krea 2 Style Reference Partner Node 文档 + + +## Krea 2 文生图工作流 + +Krea 2 文生图工作流 + +### 运行步骤 + +1. **输入提示词** — 在 **Krea2ImageNode** 节点中输入文字描述 +2. **选择模型变体** — 选择 **Krea 2 Medium**(插画)或 **Krea 2 Large**(照片级真实感) +3. **调整参数** — 设置画面比例、分辨率、创意度和随机种子 +4. **点击执行** — 按 `Ctrl+Enter` 或点击 Queue 按钮生成图片 +5. **查看结果** — 生成的图片显示在 **SaveImage** 节点中,保存在 `ComfyUI/output/` 目录 + +### 节点参数 + +| 参数 | 说明 | +|---|---| +| `prompt` | 期望生成的图片描述文本 | +| `model` | Krea 2 Medium(插画)或 Krea 2 Large(照片级真实感) | +| `aspect_ratio` | 生成图片的宽高比 | +| `resolution` | 输出分辨率(1K、2K 等) | +| `creativity` | 控制生成的创意度 | +| `moodboard_id` | 可选:Krea moodboard 的 UUID | +| `moodboard_strength` | 可选:moodboard 影响强度(默认 0.35) | +| `seed` | 随机种子,用于复现结果 | + +## Krea 2 风格参考工作流 + +Krea 2 风格参考工作流 + +风格参考工作流增加了上传参考图片的步骤。拍摄一张或多张参考图片来定义美学风格、情绪和视觉方向,生成的图片将匹配提示词的同时应用参考风格。 + + + + 打开 Comfy Cloud + + + 下载 JSON 或在模板库中搜索 "Krea 2: Style Reference" + + + +### 运行步骤 + +1. **上传参考图片** — 使用 **LoadImage** 节点加载风格参考图片(最多支持 10 张) +2. **输入提示词** — 在 **Krea2ImageNode** 中描述你想要生成的场景 +3. **选择模型变体** — 选择 Medium 或 Large +4. **调整风格强度** — 在 **Krea2StyleReferenceNode** 节点中调整风格参考强度 +5. **点击执行** — 按 `Ctrl+Enter` 生成 +6. **查看结果** — 生成的图片显示在 **SaveImage** 节点中 + +### 补充说明 + +- Krea 2 Image 节点支持同时使用最多 **10 张风格参考图片** +- `moodboard_id` 参数需要有效的 Krea moodboard UUID +- Krea 2 可在 **Comfy Cloud** 和 **Comfy Desktop** 中使用,需订阅 Partner Node