
このComfyUIワークフローは、GrokImageNodeを使いGrok Imagine API経由でテキストプロンプトから画像を生成し、SaveImageで保存します。画像内のテキスト(看板・ポスター・UIモックなど)を鮮明に、かつ高いビジュアルディテールで出力したい場合に最適です。パイプラインは極力シンプルに設計されており、プロンプト入力→画像出力に集中でき、素早い反復が可能です。
技術的には、GrokImageNodeがプロンプトとノードで指定可能なパラメータ(アスペクト比・サイズ・シード・画像数など)をGrok Imagineモデルに送り、生成画像テンソルをComfyUIに返します。SaveImageノードが画像をComfyUIの出力ディレクトリに保存。外部APIによる高品質・テキスト描画強化と、ComfyUIのノードベース作業の利便性を両立した、シンプルで信頼性の高いテキスト→画像ワークフローです。
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 this workflow (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
const wf = await client.workflows.fromFile("workflow_api.json");
const job = await client.run(wf);
await job.getOutputs("<output-node-id>")[0].toFile("output.png");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














