Navigation
API > API/Runtime > API/Runtime/ImageWrapper
Enumerates the types of RGB formats this class can handle.
| Name | ERGBFormat |
| Type | enum |
| Header File | /Engine/Source/Runtime/ImageWrapper/Public/IImageWrapper.h |
| Include Path | #include "IImageWrapper.h" |
Syntax
enum ERGBFormat
{
Invalid = -1,
RGBA = 0,
BGRA = 1,
Gray = 2,
RGBAF = 3,
BGRE = 4,
GrayF = 5,
}
Values
| Name | Remarks |
|---|---|
| Invalid | |
| RGBA | Red, Green, Blue and Alpha ; requires RB swap from FColor. |
| BGRA | Blue, Green, Red and Alpha ; is ERawImageFormat::BGRA8 and Fcolor. |
| Gray | Gray scale. |
| RGBAF | Red, Green, Blue and Alpha using IEEE Floating-Point Arithmetic (see IEEE754). The format is always binary. |
| BGRE | Blue, Green, Red and Exponent (Similar to the RGBE format from radiance but with the blue and red channel inversed) |
| GrayF | Gray scale using IEEE Floating-Point Arithmetic (see IEEE754). The format is always binary. |