Chroma: テキストから画像へ

「Chroma: Text to Image」ワークフローは、Chromaモデルの強化機能を活用し、Fluxモデルをベースにテキストプロンプトから高品質・高詳細な画像を生成します。VAEDecode、CFGGuider、ModelSamplingAuraFlowなどの主要ノードを統合し、プロンプト内容を忠実に反映した魅力的な画像を実現。VAELoaderやUNETLoaderで必要なモデルをロードし、精密な画像生成の土台を作ります。CLIPTextEncodeノードがテキストプロンプトを解釈し、CFGGuiderノードで創造性とプロンプト忠実度を制御します。

技術的には、RandomNoiseノードで制御されたランダム性を導入し、ユニークな出力を実現。BasicSchedulerとSamplerCustomAdvancedノードがサンプリングプロセスを効率的かつ高精度に管理します。T5TokenizerOptionsノードでプロンプトカスタマイズも柔軟に行えます。テキスト記述から高品質画像を生成したいアーティストやコンテンツ制作者に最適なワークフローです。

API

Use this workflow from code

Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.

image_chroma_text_to_image.json
Fetching workflow JSON…

Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.

// Install (beta)
npm i @comfyorg/sdk

// Run "Chroma: テキストから画像へ" (TypeScript)
import { Comfy } from "@comfyorg/sdk";

const client = new Comfy({ apiKey: "comfyui-..." });

// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("image_chroma_text_to_image_api.json");

wf.setInput("748", "text", "your prompt here"); // CLIPTextEncode

const job = await client.run(wf);
await job.getOutputs("740")[0].toFile("output.png"); // SaveImage

The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).

Comfy Cloud API access requires a plan with an API key.

FAQ

よくある質問

すべてのワークフローを見る
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates