All models
Imagev1.0.0
Qwen Image Edit Plus
Instruction editing with strong text rendering inside the image.
5 inputsIMAGE


Prompt: “add a hand-painted wooden sign reading OPEN”
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins qwen-image-edit-plus and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("qwen-image-edit-plus", {
image: { ref: "https://..." },
prompt: { value: "example" },
aspectRatio: { value: "match_input_image" },
outputFormat: { value: "webp" },
seed: { value: 1 },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node qwen-image-edit-plus \
-i image=@https://... \
-i prompt="example" \
-i aspectRatio="match_input_image" \
-i outputFormat="webp" \
-i seed=1{
"name": "runs_node",
"arguments": {
"node": "qwen-image-edit-plus",
"inputs": {
"image": {
"ref": "https://..."
},
"prompt": {
"value": "example"
},
"aspectRatio": {
"value": "match_input_image"
},
"outputFormat": {
"value": "webp"
},
"seed": {
"value": 1
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"qwen-image-edit-plus","inputs":{"image":{"ref":"https://..."},"prompt":{"value":"example"},"aspectRatio":{"value":"match_input_image"},"outputFormat":{"value":"webp"},"seed":{"value":1}}}'Schema
Inputs
| image* | IMAGE | ||
| prompt* | TEXT | Instruction | |
| aspectRatio | TEXT | match_input_image · 1:1 · 16:9 · 9:16 · 4:3 · 3:4 | match_input_image |
| outputFormat | TEXT | webp · jpg · png | webp |
| seed | INT |
Outputs
| image | IMAGE |