Navigation
API > API/Runtime > API/Runtime/ImageCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void FImageCore::ResizeImageInPlace
(
FImage& Image, |
ResizeImage variant. | ImageCore.h | |
void FImageCore::ResizeImageInPlace
(
FImage& Image, |
ResizeImage variant. | ImageCore.h |
FImageCore::ResizeImageInPlace(FImage &, int32, int32, EResizeImageFilter)
Description
ResizeImage variant. See main ResizeImage function for notes.
Resize from Image and write the result into Image. Image may be reallocated to fit the destination size/format requested.
Other ResizeImage functions do not work in-place.
Format of image will not be changed.
| Name | FImageCore::ResizeImageInPlace |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
| Source | /Engine/Source/Runtime/ImageCore/Private/ImageCore.cpp |
namespace FImageCore
{
void FImageCore::ResizeImageInPlace
(
FImage & Image,
int32 DestSizeX,
int32 DestSizeY,
EResizeImageFilter Filter
)
}
Parameters
| Name | Remarks |
|---|---|
| Image | Source Image to resize from, will be changed to hold the destination image and reallocated if needed. |
| DestSizeX | Specifies output of resize. DestImage will be changed to this. |
| DestSizeY | Specifies output of resize. DestImage will be changed to this. |
| Filter | EResizeImageFilter filter choice, or Default if none |
FImageCore::ResizeImageInPlace(FImage &, int32, int32, ERawImageFormat::Type, EGammaSpace, EResizeImageFilter)
Description
ResizeImage variant. See main ResizeImage function for notes.
Resize from Image and write the result into Image. Image may be reallocated to fit the destination size/format requested.
Other ResizeImage functions do not work in-place.
| Name | FImageCore::ResizeImageInPlace |
| Type | function |
| Header File | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include Path | #include "ImageCore.h" |
| Source | /Engine/Source/Runtime/ImageCore/Private/ImageCore.cpp |
namespace FImageCore
{
void FImageCore::ResizeImageInPlace
(
FImage & Image,
int32 DestSizeX,
int32 DestSizeY,
ERawImageFormat::Type DestFormat,
EGammaSpace DestGammaSpace,
EResizeImageFilter Filter
)
}
Parameters
| Name | Remarks |
|---|---|
| Image | Source Image to resize from, will be changed to hold the destination image and reallocated if needed. |
| DestSizeX | Specifies output of resize. DestImage will be changed to this. |
| DestSizeY | Specifies output of resize. DestImage will be changed to this. |
| DestFormat | Specifies output of resize. DestImage will be changed to this. |
| DestGammaSpace | Specifies output of resize. DestImage will be changed to this. |
| Filter | EResizeImageFilter filter choice, or Default if none |