Navigation
API > API/Runtime > API/Runtime/ImageWrapper > API/Runtime/ImageWrapper/IImageWrapperModule
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool DecompressImage
(
const void* InCompressedData, |
Read an image from file format encoded data. | IImageWrapperModule.h | |
bool DecompressImage
(
const void* InCompressedData, |
Read an image from file format encoded data. | IImageWrapperModule.h |
DecompressImage(const void *, int64, FImage &)
Description
Read an image from file format encoded data. ImageWrapper calls this a "decompress" OutImage is allocated and filled, any existing contents are discarded
| Name | DecompressImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageWrapper/Public/IImageWrapperModule.h |
| Include Path | #include "IImageWrapperModule.h" |
bool DecompressImage
(
const void * InCompressedData,
int64 InCompressedSize,
FImage & OutImage
)
Parameters
| Name | Remarks |
|---|---|
| InCompressedData | Image format encoded bytes to read; format is automatically deduced from the content |
| InCompressedSize | Size of InCompressedData in bytes |
| OutImage | Filled with Image that is read. Allocated. |
DecompressImage(const void *, int64, FDecompressedImageOutput &)
Description
Read an image from file format encoded data. ImageWrapper calls this a "decompress" OutImage is allocated and filled, any existing contents are discarded
| Name | DecompressImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageWrapper/Public/IImageWrapperModule.h |
| Include Path | #include "IImageWrapperModule.h" |
bool DecompressImage
(
const void * InCompressedData,
int64 InCompressedSize,
FDecompressedImageOutput & OutDecompressedImage
)
Parameters
| Name | Remarks |
|---|---|
| InCompressedData | Image format encoded bytes to read; format is automatically deduced from the content |
| InCompressedSize | Size of InCompressedData in bytes |
| OutDecompressedImageData | Filled with Image along with other meta data and mip images that is read. Allocated. |