vote up 0 vote down star

I have an .aspx file that outputs an image using the following methods:

 Server.MapPath("somefile.png")
 Response.ContentType = "image/png";
 Response.WriteFile(fileURI);

I have a function that rotates the image by 0-360 degrees and returns it as a bitmap.

How can I take this in-memory bitmap and then write it out to the client as a PNG?

flag

75% accept rate

1 Answer

vote up 2 vote down check
var m = new MemoryStream();
bitmap.Save(m, ImageFormat.Png);
//might want to set correct mime type here.
Response.BinaryWrite(m.ToArray());
Response.End();
link|flag
1  
You mean Response.BinaryWrite. – configurator Nov 3 at 17:07
@configurator - fixed. Thanks - been doing too much ASP.NET MVC ;) – David Kemp Nov 3 at 17:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.