Navigation
API > API/Runtime > API/Runtime/ImageCore
References
| Module | ImageCore |
| Header | /Engine/Source/Runtime/ImageCore/Public/ImageCore.h |
| Include | #include "ImageCore.h" |
| Source | /Engine/Source/Runtime/ImageCore/Private/ImageCore.cpp |
namespace FImageCore
{
void FImageCore::CopyImageRGBABGRA
(
const FImageView & SrcImage,
const FImageView & DestImage
)
}
Remarks
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.
Parameters
| Name | Description |
|---|---|
| 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) |