All models
Imagev1.0.0
Flux Canny
Regenerate an image while preserving exact outlines and silhouettes from the reference.
5 inputsIMAGE


Prompt: “a clean colored-pencil sketch of the same subject”
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 flux-canny-dev 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("flux-canny-dev", {
image: { ref: "https://..." },
prompt: { value: "example" },
aspectRatio: { value: "match_input_image" },
steps: { value: 28 },
seed: { value: 1 },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node flux-canny-dev \
-i image=@https://... \
-i prompt="example" \
-i aspectRatio="match_input_image" \
-i steps=28 \
-i seed=1{
"name": "runs_node",
"arguments": {
"node": "flux-canny-dev",
"inputs": {
"image": {
"ref": "https://..."
},
"prompt": {
"value": "example"
},
"aspectRatio": {
"value": "match_input_image"
},
"steps": {
"value": 28
},
"seed": {
"value": 1
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"flux-canny-dev","inputs":{"image":{"ref":"https://..."},"prompt":{"value":"example"},"aspectRatio":{"value":"match_input_image"},"steps":{"value":28},"seed":{"value":1}}}'Schema
Inputs
| image* | IMAGE | Reference image | |
| prompt* | TEXT | ||
| aspectRatio | TEXT | match_input_image · 1:1 · 16:9 · 9:16 · 4:3 · 3:4 · 3:2 · 2:3 | match_input_image |
| steps | INT | 28 | |
| seed | INT |
Outputs
| image | IMAGE |