
このComfyUIワークフローは、Qwen-Imageモデルを活用し、多言語テキストの高度な画像生成・編集を実現します。中核となる20B MMDiTモデルは、多言語対応の複雑なテキストから画像生成タスクに優れています。SaveImageやMarkdownNoteなどのノードを組み合わせ、高品質な画像生成と保存を効率化。e5cfe5ba-2ae0-4bc4-869f-ab2228cb44d3ノードがデータフローを管理し、モデル出力を正確に記録します。多言語広告や教育コンテンツなど、画像内に正確なテキスト統合が必要な用途に最適です。
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 "Qwen-Image: テキストから画像へ" (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_qwen_image_api.json");
const job = await client.run(wf);
await job.getOutputs("60")[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














