# 在空间现实显示屏上显示图像
本页面解释如何在空间现实显示屏上获取显示的图像。有关如何使用捕获图像的示例,请参阅 [Second Window sample](/Products/Developer-Spatial-Reality-display/zh/develop/UnrealEngine/Samples.html)。
## 前提条件
- 在计算机上安装Spatial Reality Display Settings应用程序(请参阅 [设置Spatial Reality Display Settings](/Products/Developer-Spatial-Reality-display/zh/develop/Setup/SetupSRRuntime.html)。
- 安装Epic Games Launcher、Unreal Engine和Visual Studio。
- 设置 [编程快速入门](https://dev.epicgames.com/documentation/zh-cn/unreal-engine/unreal-engine-cpp-quick-start)。
## 如何获取合成图像
SRDisplayPlugin中定义的 `OnSRDRenderTextureCompletedDelegate` 多播委托绑定一个函数后,您可以每帧获取在空间现实显示屏上渲染的合成图像。
1. 准备要绑定到 `OnSRDRenderTextureCompletedDelegate` 的函数。定义一个以 `FRHICommandListImmediate&` 作为第一个参数,以 `FTextureRHIRef` 作为第二个参数的函数。
:::note
如果您使用的是Unreal Engine 4.27,请使用 `FTexture2DRHIRef` 作为第二个参数。
:::
```cpp
void RenderingSRDisplay2DWindow(FRHICommandListImmediate& RHICmdList, FTextureRHIRef SrcTexture);
```
2. 从 `FSRDisplaySystem` 获取 `OnSRDRenderTextureCompletedDelegate` 并将上一步中定义的函数绑定到它。有关如何将函数绑定到委托的更多信息,请参阅 [Multicast Delegate](https://dev.epicgames.com/documentation/zh-cn/unreal-engine/multicast-delegates-in-unreal-engine)。在此示例中,我们使用 `AddRaw()`。
```cpp
srdisplay_module::FSRDisplaySystem* SRDisplaySystem = USRDisplayFunctionLibrary::GetSRDisplaySystem();
FOnSRDRenderTextureCompletedDelegate& OnSRDRenderTextureCompletedDelegate = SRDisplaySystem->GetSRDRenderTextureCompletedDelegate();
OnSRDRenderTextureCompletedDelegate.AddRaw(FSample2DWindow::GetPlayWindow(), &FSample2DWindow::RenderingSRDisplay2DWindow);
```
3. 当图像在空间现实显示屏上渲染时,绑定到 `OnSRDRenderTextureCompletedDelegate` 的函数将被调用。函数的第二个参数包含正在渲染的合成图像的纹理。