Insert Into
Place one image on top of another at a specific position
Insert Into
Place one image on top of another at a specific position
Overview
The Insert Into node places a foreground image onto a background image at exact pixel coordinates. Unlike Merge, it uses simple overlay without blend modes - foreground pixels replace background pixels.
Usage Tips
- Position (0,0) places foreground at top-left corner
- Calculate center position: (bg_width - fg_width) / 2
- Use for precise placement of logos, badges, or elements
- Foreground transparency is preserved
Common Pairings
- Image Attributes - Get background dimensions for positioning calculations
- Size Maths - Calculate center or offset positions dynamically
- Resize - Scale foreground before inserting
Gotchas
- Position is absolute pixels, not percentages
- Foreground extending beyond background is cropped
- For blend effects, use Merge node instead
Technical Reference
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
fg_input | Image | Yes | Foreground image to insert |
bg_input | Image | Yes | Background image |
Outputs
| Name | Type | Description |
|---|---|---|
output | Image | Combined image |
Parameters
| Name | Type | Default | Description |
|---|---|---|---|
params_position | size | map[height:0 width:0] | Position (x, y) to insert foreground image |