Your First Graph
This guide walks you through building a simple pipeline from scratch. By the end, you’ll understand how to create nodes, connect them, and export results.
Step 1: Create an Image In Node
Section titled “Step 1: Create an Image In Node”- Right-click on the empty canvas to open the node creation menu.
- Search for “Image In” or find it under Inputs.
- Click to place the node on the canvas.
- In the Properties panel, click the folder icon next to the File Path field to pick an image from disk.
Step 2: Add a Filter
Section titled “Step 2: Add a Filter”- Right-click the canvas again and add a Blur node (under Filter).
- Drag from the Image In output pin (the orange filled square on its right edge) to the input pin of the Blur node.
- A wire connects them, and the Blur node now processes the output of Image In.
- In the Blur node, set Type to Gaussian — the Radius slider only applies to Gaussian, Box, and Median modes.
- Adjust the Radius slider to control the strength of the blur.
Step 3: Preview the Result
Section titled “Step 3: Preview the Result”- With the Blur node still selected, look at the Preview panel on the right.
- The preview shows the live output of the selected node, so you can confirm the blur looks right before exporting.
- Tweak the Radius and watch the preview update in real time — nothing is baked until you export.
Step 4: Export the Result
Section titled “Step 4: Export the Result”- Add an Export Image node (under Export).
- Connect the Blur node’s output to the Export Image input.
- Click the folder icon next to the File Path field to choose an output filename and location.
- Click the Export button on the node. Your processed image is saved to disk.
Key Concepts
Section titled “Key Concepts”- Nodes are operations: each one does one thing well.
- Wires connect outputs to inputs, so data flows left to right.
- Pin types ensure compatibility; you can only connect matching types.
- Changes propagate automatically. Adjust any parameter and downstream nodes update in real time.
Next Steps
Section titled “Next Steps”- Learn about Pin Types to understand the connection system.
- Explore Palette Variants to generate multiple color versions from one graph.
- Browse the full Node Reference for all 75 nodes.