Navigation
API > API/Runtime > API/Runtime/ImageCore > API/Runtime/ImageCore/FImage
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FImage () |
Default constructor. | ImageCore.h | |
| ImageCore.h | |||
| Move constructor | ImageCore.h | ||
FImage
(
int32 InSizeX, |
Note: changed default GammaSpace from Linear to GetDefaultGammaSpace | ImageCore.h | |
FImage
(
int32 InSizeX, |
Note: changed default GammaSpace from Linear to GetDefaultGammaSpace | ImageCore.h | |
FImage
(
int32 InSizeX, |
Creates and initializes a new image with a single slice. | ImageCore.h | |
FImage
(
int32 InSizeX, |
Creates and initializes a new image with the specified number of slices. | ImageCore.h |
FImage()
Description
Default constructor.
| Name | FImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
FImage()
FImage(const FImage &)
| Name | FImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
FImage
(
const FImage & CopyFrom
)
FImage(FImage &&)
Description
Move constructor
| Name | FImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
FImage
(
FImage && MoveFrom
)
FImage(int32, int32, ERawImageFormat::Type)
Description
Note: changed default GammaSpace from Linear to GetDefaultGammaSpace
| Name | FImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
FImage
(
int32 InSizeX,
int32 InSizeY,
ERawImageFormat::Type InFormat
)
FImage(int32, int32, int32, ERawImageFormat::Type)
Description
Note: changed default GammaSpace from Linear to GetDefaultGammaSpace
| Name | FImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
FImage
(
int32 InSizeX,
int32 InSizeY,
int32 InNumSlices,
ERawImageFormat::Type InFormat
)
FImage(int32, int32, ERawImageFormat::Type, EGammaSpace)
Description
Creates and initializes a new image with a single slice.
| Name | FImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
FImage
(
int32 InSizeX,
int32 InSizeY,
ERawImageFormat::Type InFormat,
EGammaSpace InGammaSpace
)
Parameters
| Name | Remarks |
|---|---|
| InSizeX | The image width. |
| InSizeY | The image height. |
| InFormat | The image format. |
| InGammaSpace | (optional) Image Gamma Space. GetDefaultGammaSpace() if not provided. |
FImage(int32, int32, int32, ERawImageFormat::Type, EGammaSpace)
Description
Creates and initializes a new image with the specified number of slices.
| Name | FImage |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
| Source | /Engine/Source/Runtime/ImageCore/Private/ImageCore.cpp |
FImage
(
int32 InSizeX,
int32 InSizeY,
int32 InNumSlices,
ERawImageFormat::Type InFormat,
EGammaSpace InGammaSpace
)
Parameters
| Name | Remarks |
|---|---|
| InSizeX | The image width. |
| InSizeY | The image height. |
| InNumSlices | The number of slices. |
| InFormat | The image format. |
| InGammaSpace | (optional) Image Gamma Space. GetDefaultGammaSpace() if not provided. |