Navigation
API > API/Runtime > API/Runtime/ImageWrapper > API/Runtime/ImageWrapper/IImageWrapper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool GetRawImage
(
FImage& OutImage |
Decode the image file data from SetCompressed() into an FImage OutImage is allocated and attributes are filled Any previous passed-in contents of OutImage are destroyed OutImage.Format is ignored, a new format is set from the loaded image | IImageWrapper.h | |
bool GetRawImage
(
FDecompressedImageOutput& OutDecompressedImage |
Decode the image file data from SetCompressed() into an FImage OutImage is allocated and attributes are filled. | IImageWrapper.h |
GetRawImage(FImage &)
Description
Decode the image file data from SetCompressed() into an FImage OutImage is allocated and attributes are filled Any previous passed-in contents of OutImage are destroyed OutImage.Format is ignored, a new format is set from the loaded image
This is the recommended API to get the raw image data from the imagewrapper. Prefer this instead of any of the GetRaw() calls.
| Name | GetRawImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageWrapper/Public/IImageWrapper.h |
| Include Path | #include "IImageWrapper.h" |
| Source | /Engine/Source/Runtime/ImageWrapper/Private/ImageWrapperBase.cpp |
bool GetRawImage
(
FImage & OutImage
)
Parameters
| Name | Remarks |
|---|---|
| OutImage | Filled with the image |
GetRawImage(FDecompressedImageOutput &)
Description
Decode the image file data from SetCompressed() into an FImage OutImage is allocated and attributes are filled. Any previous passed-in contents of OutImage are destroyed. OutImage.Format is ignored, a new format is set from the loaded image MetaInfo is filled if applicable
This is the recommended API to get the raw image data from the imagewrapper. Prefer this instead of any of the GetRaw() calls.
| Name | GetRawImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageWrapper/Public/IImageWrapper.h |
| Include Path | #include "IImageWrapper.h" |
| Source | /Engine/Source/Runtime/ImageWrapper/Private/ImageWrapperBase.cpp |
bool GetRawImage
(
FDecompressedImageOutput & OutDecompressedImage
)
Parameters
| Name | Remarks |
|---|---|
| OutDecompressedImage | Image and meta data along with Mip Map Images |