如何从 RenderTargetBitmap 位传输到 WriteableBitmap?
我正在将数十个视觉效果渲染到 RenderTargetBitmap。每个都在它自己的矩形中渲染。 我想要做的是将 RenderTargetBitmap 实例渲染的这些矩形区域之一复制到 WriteableBitmap 的同一区域...快速复制矩形像素或 smth。像那样。
那么,有没有一种方法可以快速地将 rect 从 RenderTargetBitmap 复制到 WriteableBitmap 呢?
I'm rendering dozens of visuals to the RenderTargetBitmap. Each is rendered in it's own Rect.
What I want to do is to copy one of these Rect areas rendered from RenderTargetBitmap instance into the same area of the WriteableBitmap...Fast copy rect pixels or smth. like that.
So, is there a way to copy rect from RenderTargetBitmap to WriteableBitmap in a fast way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过将整个 RenderTargetBitmap 复制到 WriteableBitmap 来解决,如下所示:
Solved by copying the whole RenderTargetBitmap to WriteableBitmap like this: