Navigation
API > API/Runtime > API/Runtime/ImageCore
Description
Copy Image, swapping RB, SrcImage must be BGRA8 or RGBA16. Sizes must match. Dest must already be allocated. Src == Dest is okay for in-place transpose.
| Name | FImageCore::CopyImageRGBABGRA |
| 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::CopyImageRGBABGRA
(
const FImageView & SrcImage,
const FImageView & DestImage
)
}
Parameters
| Name | Remarks |
|---|---|
| SrcImage | The source image to copy from. |
| DestImage | The destination image to copy to. (the FImageView is const but what it points at is not) |