Page:
Nodes/Image/RGBACombine
Pages
Guides/QuickStart
Home
Nodes/BaseImageNode
Nodes/Image/Desaturate
Nodes/Image/GetDimensions
Nodes/Image/Invert
Nodes/Image/InvertChannel
Nodes/Image/RGBACombine
Nodes/Image/RGBASplit
Nodes/Image/Texture2DImport
Nodes/Image/Texture2DOutput
Nodes/Image/VariableNode
Nodes/Image/ViewImageNode
Nodes/Images/FromPathNode
Nodes/Images/SingleChannelColor
Nodes/String/Append
Nodes/String/Replace
Nodes/String/Split
Nodes/Utils/GenericConnection
quick-start
Clone
1
Nodes/Image/RGBACombine
Chromum edited this page 2025-05-09 11:25:17 +00:00
Table of Contents
RGBA Combine
🔌 INPUT PORTS
Name | Type | Description |
---|---|---|
R |
SplitChannelData |
The red channel data to be combined. |
G |
SplitChannelData |
The green channel data to be combined. |
B |
SplitChannelData |
The blue channel data to be combined. |
A |
SplitChannelData |
The alpha channel data to be combined. |
📤 EXPORT PORTS
Name | Type | Description |
---|---|---|
Combined Image |
ImageData |
The resulting image after combining the RGBA channels into a single image. |
📝 DESCRIPTION
The RGBA Combine node takes four separate R, G, B, and A channels and combines them into a single RGBA image. This is commonly used for reconstructing an image from its individual channels, such as when manipulating channels in image processing workflows.
This node:
- Combines the channels into a single
ImageData
output, using theColor32
struct for each pixel (each channel is expected to be abyte
ranging from 0 to 255).
This node is often combined with an RGBASplit
Node.
This node is derived from BaseImageNode
.
⚠️ KNOWN ISSUES
- Ensure that all input channels have the same width and height. If they do not match, unexpected behavior may occur.