在 ASP.NET 服务器端使用 WPF 硬件加速阴影?
我想在 ASP.NET 中的 Bitmap 类上运行投影,如果 GPU 可以做到这一点,我会非常高兴。这种情况有发生的可能性吗?
更新:我想在服务器端执行此操作。它不一定是 ASP.NET 应用程序,它可以是控制台应用程序或 Windows 服务。
I'd like to run drop shadow on Bitmap class in ASP.NET and I'd be really happy if GPU could do that. Any chance of this happening?
Update: I'd like to do that on server side. It doesn't really have to be ASP.NET app, it could be console app or windows service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是没有硬件加速方法来将视觉内容捕获到位图。 RenderTargetBitmap 使用软件渲染路径。不过,您可以让 RTB 在 ASP.NET 应用程序中工作,但这不是受支持的方案。
The issue is there is no hardware accelerated method to capture a visual to a bitmap. RenderTargetBitmap uses the software render path. You can however get RTB to work in an ASP.NET application, but it is not a supported scenario.
在 ASP.NET 中运行嵌入的 Silverlight 怎么样?
How about running Silverlight embedded in ASP.NET?