Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/FSlateApplication
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool TakeHDRScreenshot
(
const TSharedRef< SWidget >& Widget, |
Takes a screenshot of the widget writing the results into the color buffer provided. | Framework/Application/SlateApplication.h | |
bool TakeHDRScreenshot
(
const TSharedRef< SWidget >& Widget, |
Takes a screenshot of the widget writing the results into the color buffer provided, this version allows you to provide an inner area to screenshot. | Framework/Application/SlateApplication.h |
TakeHDRScreenshot(const TSharedRef< SWidget > &, TArray< FLinearColor > &, FIntVector &)
Description
Takes a screenshot of the widget writing the results into the color buffer provided. This is to be used with HDR buffers the size of the resulting image is also output.
| Name | TakeHDRScreenshot |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h |
| Include Path | #include "Framework/Application/SlateApplication.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Application/SlateApplication.cpp |
bool TakeHDRScreenshot
(
const TSharedRef < SWidget > & Widget,
TArray < FLinearColor > & OutColorData,
FIntVector & OutSize
)
true if taking the screenshot was successful.
TakeHDRScreenshot(const TSharedRef< SWidget > &, const FIntRect &, TArray< FLinearColor > &, FIntVector &)
Description
Takes a screenshot of the widget writing the results into the color buffer provided, this version allows you to provide an inner area to screenshot. Note that the format is BGRA. The size of the resulting image is also output.
| Name | TakeHDRScreenshot |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h |
| Include Path | #include "Framework/Application/SlateApplication.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Application/SlateApplication.cpp |
bool TakeHDRScreenshot
(
const TSharedRef < SWidget > & Widget,
const FIntRect & InnerWidgetArea,
TArray < FLinearColor > & OutColorData,
FIntVector & OutSize
)
true if taking the screenshot was successful.