
This ComfyUI workflow leverages the Qwen-Image model to generate images with advanced multilingual text rendering and editing capabilities. At the core of this workflow is the 20B MMDiT model, which is renowned for its ability to handle complex text-to-image tasks across multiple languages. The workflow integrates specific nodes such as SaveImage and MarkdownNote to facilitate the process of generating and saving high-quality images. The e5cfe5ba-2ae0-4bc4-869f-ab2228cb44d3 node is pivotal in managing the data flow and ensuring the model's outputs are accurately captured and stored. This setup is particularly useful for applications requiring precise text integration into images, such as multilingual advertising or educational content creation.
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.
GET https://comfy.org/workflows/download/fb60d80de54b.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run "Qwen-Image Text to Image" (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("image_qwen_image_api.json")
job = client.run(wf)
for output in job.get_outputs("60"): # SaveImage
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














