向 RenderTargetBitmap 添加可选硬件加速
是否有 RenderTargetBitmap 的替代方案可以生成与 Image.Source & 一起使用的图像? .NET 3.5 sp1 中是否有硬件加速? .NET 4.0 的答案很好,但我可能无法使用它们。
如果人们发现它有帮助,就应该投票支持它……就像我一样。
Is there an alternative to RenderTargetBitmap that can produce an image to be used with Image.Source & is hardware accelerated in .NET 3.5 sp1? Answers for .NET 4.0 are fine but I may not be able to use them.
People should vote for this if they find it would be helpful... like me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否看过 BitmapCacheBrush
该类是硬件加速(在 GPU 上运行)并且可以像任何其他画笔一样使用(只需创建一个矩形并将其 Fill 属性设置为画笔)。
Have you looked at BitmapCacheBrush
That class is hardware accelerated (runs on the GPU) and can be used like any other brush (just create a Rectangle and set its Fill property to the brush).