Navigation
API > API/Runtime > API/Runtime/ImageCore
Description
Copy Image to 2xU16 ; Dest Image should be allocated as BGRA8 but is actually 2xU16 Sizes must match. Dest must already be allocated.
| Name | FImageCore::CopyImageTo2U16 |
| 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::CopyImageTo2U16
(
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) |