
Qwen Image Edit for Illustration v1.0 is a text-guided image editing workflow that turns your existing images into clean, stylized illustrations while preserving structure. It combines the Qwen Image Edit model with an illustration-focused LoRA so you can apply style changes (e.g., "convert this product photo into a flat vector illustration") without redrawing from scratch. The core path is simple: LoadImage brings in your source, PrimitiveStringMultiline captures your edit instruction, the model loader node (c7f5c302-e46e-4a0f-91bd-0aec474e7659) loads the Qwen Image/Qwen Image Edit weights, LoraLoaderModelOnly merges the illustration LoRA into the base model, the edit node (eba40a3a-f6c5-48ac-b58e-55525d06b373) runs inference, and SaveImage writes the result.
Technically, the LoRA is injected on-the-fly by LoraLoaderModelOnly, biasing the Qwen Edit model toward illustrated outputs while keeping the underlying content aligned with your source image. The edit node consumes the input image plus your instruction and uses the merged model to generate a new frame that follows your prompt. The included MarkdownNote provides in-graph tips, and all required model files are available from the Comfy-Org/Qwen-Image_ComfyUI and Comfy-Org/Qwen-Image-Edit_ComfyUI Hugging Face repos linked in the author notes.
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/847f17f3f95c.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 this workflow (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
wf = client.workflows.from_file("workflow_api.json")
job = client.run(wf)
for output in job.get_outputs("<output-node-id>"):
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














