All models
Imagev1.0.0
ControlNet Tile (Detail Upscale)
Upscale tile by tile, adding detail while holding composition.
7 inputsIMAGE


Tiled upscale — detail added, composition held
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 controlnet-tile-upscale 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("controlnet-tile-upscale", {
image: { ref: "https://..." },
prompt: { value: "" },
resolution: { value: "2560" },
resemblance: { value: 0.85 },
creativity: { value: 0.35 },
format: { value: "jpg" },
seed: { value: 1 },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node controlnet-tile-upscale \
-i image=@https://... \
-i prompt="" \
-i resolution="2560" \
-i resemblance=0.85 \
-i creativity=0.35 \
-i format="jpg" \
-i seed=1{
"name": "runs_node",
"arguments": {
"node": "controlnet-tile-upscale",
"inputs": {
"image": {
"ref": "https://..."
},
"prompt": {
"value": ""
},
"resolution": {
"value": "2560"
},
"resemblance": {
"value": 0.85
},
"creativity": {
"value": 0.35
},
"format": {
"value": "jpg"
},
"seed": {
"value": 1
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"controlnet-tile-upscale","inputs":{"image":{"ref":"https://..."},"prompt":{"value":""},"resolution":{"value":"2560"},"resemblance":{"value":0.85},"creativity":{"value":0.35},"format":{"value":"jpg"},"seed":{"value":1}}}'Schema
Inputs
| image* | IMAGE | ||
| prompt | TEXT | ||
| resolution | TEXT | 2048 · 2560 · 4096 | 2560 |
| resemblance | FLOAT | 0.85 | |
| creativity | FLOAT | 0.35 | |
| format | TEXT | Output format jpg · png | jpg |
| seed | INT |
Outputs
| image | IMAGE |