Navigation
API > API/Runtime > API/Runtime/ImageWrapper
References
| Module | ImageWrapper |
| Header | /Engine/Source/Runtime/ImageWrapper/Public/IImageWrapper.h |
| Include | #include "IImageWrapper.h" |
Syntax
enum ERGBFormat
{
Invalid = -1,
RGBA = 0,
BGRA = 1,
Gray = 2,
RGBAF = 3,
BGRE = 4,
GrayF = 5,
}
Values
| Name | Description |
|---|---|
| Invalid | |
| RGBA | Red, Green, Blue and Alpha. |
| BGRA | Blue, Green, Red and Alpha. |
| 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. |
Remarks
Enumerates the types of RGB formats this class can handle.