tags:

views:

31

answers:

1

Hi I have am working in MVC, I want to display image which is available in in System.Drawing.Image object.

Please give me some solution for this.

Thanks & Regards

Munish Gautam

+1  A: 
return new FileContentResult(your.Image, [*ContentType*] )

common content types : image/gif , image/jpeg , image/png ...

Cihan Yakar