My application creates an image and displays it in an image box,but I don't see a function here to save it. Any idea how to save?
Printable View
My application creates an image and displays it in an image box,but I don't see a function here to save it. Any idea how to save?
Use the Image.Save method. That is, if you have an image object (or bitmap object), just call its Save method to save the image.
System.Web.UI.WebControls.Image
has no save method, and wouldn't I have to be really dumb to ask if it did?
No it doesn't, but System.Drawing.Image does. Can you put the web image object into a real image object, then save it?
I am new to the whole web apps thing, so forgive me if I missunderstand what you are doing.