When I have uploaded an image from my website I need to do 2 things:
- read the image dimensions
- save the image to the database
the first thing I do is reading the image stream into an Image object, like so:
var file = Request.Files["logo"];
Image FullsizeImage = Image.FromStream(file.InputStream);
the next thing I do is to save the "file" object to the database (LINQ to SQL). BUT, when I try to save the image to database, the stream from the file has it's postion at the end of the stream, and it seems no data is present.
I know I should somwhow reset the stream and put it back into position 0, but how do I do that the most effiecent and correct way ?