Output
Mark the final result of your pipeline
Output
Mark the final result of your pipeline
Overview
The Output node designates which image is the final result of the pipeline. Every pipeline must have exactly one Output node. The image connected to this node is what gets returned when the pipeline is executed.
Usage Tips
- Connect your final processed image to the Output node
- Only one Output node per pipeline
- Position it at the end of your node chain for clarity
- The image format (PNG/JPG) is determined at execution time
Common Pairings
- Merge - Output the final composited image
- Resize - Output at specific dimensions
- Adjust BCG - Apply final color corrections before output
Gotchas
- Pipeline will fail without exactly one Output node
- Cannot have multiple outputs - use separate pipelines if needed
- Output node has no parameters - it just marks the endpoint
Technical Reference
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
input | Image | Yes | Final image to output |
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
params_format | text | png | Output format: 'png' (default, lossless) or 'jpeg' (smaller file size) |
params_quality | number | 85 | JPEG quality (1-100). Higher values = better quality, larger files. Ignored for PNG. |