Getting Started
Install Magerie and create your first procedural painting.
Installation
Download Magerie for your platform from the downloads page.
macOS
- Download the
.dmgfile - Drag Magerie to your Applications folder
- Open Magerie from Applications
Windows
- Download the
.exeinstaller - Run the installer and follow the prompts
- Launch Magerie from the Start menu
Your First Node Graph
Magerie uses a node graph as its document format. Every canvas, generator, filter, and effect is a node. Here's how to create your first painting:
- Create a new project — File → New Project
- Add a Canvas node — Right-click the graph and select Canvas
- Start painting — Select the Canvas node and use the brush tool
// Example: Creating a simple blur pipeline
const canvas = createNode("canvas", { width: 1024, height: 1024 })
const blur = createNode("gaussianBlur", { radius: 5 })
connect(canvas.output, blur.input)
Node Types
Magerie ships with several built-in node categories:
| Category | Examples | Purpose |
|---|---|---|
| Canvas | Canvas, Solid Color | Paintable surfaces and color sources |
| Generators | Noise, Gradient | Procedural content generation |
| Filters | Blur, Sharpen, Levels | Image processing |
| Transform | Resize, Rotate, Crop | Spatial transformations |
| Blend | Mix, Overlay, Multiply | Compositing operations |
Keyboard Shortcuts
Tip: You can customize all keyboard shortcuts in Preferences → Keybindings.
Space— Pan the canvasCmd/Ctrl + Z— UndoCmd/Ctrl + Shift + Z— RedoB— Brush toolE— Eraser toolTab— Toggle node graph view
Next Steps
- Node Graph Basics — Learn how to build complex pipelines