Navigation
API > API/Plugins > API/Plugins/PixelCapture > API/Plugins/PixelCapture/IPixelCaptureCapturerSource
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSharedPtr< FPixelCaptureCapturer > CreateCapturer
(
int32 FinalFormat, |
Implement this to create an capture process that captures to the FinalFormat at the given resolution. | IPixelCaptureCapturerSource.h | |
virtual TSharedPtr< FPixelCaptureCapturer > CreateCapturer
(
int32 FinalFormat, |
Implement this to create an capture process that captures to the FinalFormat at the given scale. | IPixelCaptureCapturerSource.h |
CreateCapturer(int32, FIntPoint)
Description
Implement this to create an capture process that captures to the FinalFormat at the given resolution. The source format should be known by whatever is fed into the capture system.
| Name | CreateCapturer |
| Type | function |
| Header File | /Engine/Plugins/Media/PixelCapture/Source/PixelCapture/Public/IPixelCaptureCapturerSource.h |
| Include Path | #include "IPixelCaptureCapturerSource.h" |
TSharedPtr < FPixelCaptureCapturer > CreateCapturer
(
int32 FinalFormat,
FIntPoint OutputResolution
)
The FPixelCaptureCapturer that will do the work.
Parameters
| Name | Remarks |
|---|---|
| FinalFormat | The format the capture process should capture. |
| Resolution | The frame resolution the capture process should output. |
CreateCapturer(int32, float)
Description
Implement this to create an capture process that captures to the FinalFormat at the given scale. The source format should be known by whatever is fed into the capture system.
| Name | CreateCapturer |
| Type | function |
| Header File | /Engine/Plugins/Media/PixelCapture/Source/PixelCapture/Public/IPixelCaptureCapturerSource.h |
| Include Path | #include "IPixelCaptureCapturerSource.h" |
virtual TSharedPtr < FPixelCaptureCapturer > CreateCapturer
(
int32 FinalFormat,
float FinalScale
)
The FPixelCaptureCapturer that will do the work.
Parameters
| Name | Remarks |
|---|---|
| FinalFormat | The format the capture process should capture. |
| FinalScale | The frame scale the capture process should scale to. |