Navigation
API > API/Runtime > API/Runtime/ImageWrapper > API/Runtime/ImageWrapper/IImageWrapper > API/Runtime/ImageWrapper/IImageWrapper/GetRaw
References
| Module | ImageWrapper |
| Header | /Engine/Source/Runtime/ImageWrapper/Public/IImageWrapper.h |
| Include | #include "IImageWrapper.h" |
bool GetRaw
(
const ERGBFormat InFormat,
int32 InBitDepth,
TArrayView64< uint8 > OutRawData
)
Remarks
Get the raw version of the image and write to the array view (Note: It may consume the data set in the SetRaw function if it was set before)
this is often broken, should only be used with InFormat == GetFormat() DEPRECATED , use GetRaw() with 1 argument or GetRawImage() true on success, false otherwise.
Parameters
| Name | Description |
|---|---|
| InFormat | How we want to manipulate the RGB data. |
| InBitDepth | The output bit-depth per channel, normally 8. |
| OutRawData | Will contain the uncompressed raw data. |