views:

21

answers:

2

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.

A: 

How about running Silverlight embedded in ASP.NET?

Charlie
+1  A: 

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.

Jeremiah Morrill