
ComfyUIのAnimaアニメ:テキストから画像生成ワークフローは、テキストプロンプトを魅力的なアニメ風画像に変換します。Animaモデルはアニメや非写実的アートスタイルに特化したテキストから画像生成モデルで、アニメ独特の美学を維持した画像を生成します。CLIPTextEncodeでテキストプロンプトを処理し、VAEDecodeで潜在空間から画像を復元します。KSamplerノードでステップ数やCFGスケールを調整し、アートスタイルやディテールを細かく制御できます。
技術的には「モデルの読み込み」「画像サイズ設定」「プロンプト入力」の3ステップ構成です。VAELoaderとUNETLoaderノードでモデルを準備し、EmptyLatentImageノードで画像生成用の潜在空間を初期化します。SaveImageノードで最終出力を保存します。テキスト説明から素早くアニメ風ビジュアルを作りたいアーティストやコンテンツ制作者に最適で、コンセプトアートやストーリーボード、デジタルイラスト制作に活用できます。
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.
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 "Anima Anime テキストから画像への生成" (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_anima_preview_api.json");
const job = await client.run(wf);
await job.getOutputs("46")[0].toFile("output.png"); // SaveImageThe 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














