Navigation
API > API/Runtime > API/Runtime/ImageWrapper > API/Runtime/ImageWrapper/Formats > API/Runtime/ImageWrapper/Formats/FHdrImageWrapper
- IImageWrapper::GetRaw()
- FHdrImageWrapper::GetRaw()
References
| Module | ImageWrapper |
| Header | /Engine/Source/Runtime/ImageWrapper/Public/Formats/HdrImageWrapper.h |
| Include | #include "Formats/HdrImageWrapper.h" |
| Source | /Engine/Source/Runtime/ImageWrapper/Private/Formats/HdrImageWrapper.cpp |
virtual bool GetRaw
&40;
const ERGBFormat InFormat,
int32 InBitDepth,
TArray64< uint8 > & OutRawData
&41;
Remarks
Gets the raw data. (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. |