I'm using an AsyncFileUpload (AJAX Toolkit) to upload images. I have a Button which handle the image resizing. This have worked fine for some time, but not anymore...
protected void BtnUploadImage_Click(object sender, EventArgs e)
{
var imageFileNameRegEx = new Regex(@"(.*?)\.(jpg|jpeg|png|gif)$",
RegexOptions.IgnoreCase);
if (!AsyncFileUpload1.HasFile ||
!imageFileNameRegEx.IsMatch(AsyncFileUpload1.FileName))
{
AsyncFileUpload1.FailedValidation = true;
ErrorLabel.Visible = true;
return;
}
ErrorLabel.Visible = false;
var file = AsyncFileUpload1.PostedFile.InputStream;
var img = Image.FromStream(file, false, false);
...
}
Another thing which I find weird: If I try a image which is smaller than 80kb it works..!
We have tried to restart the server, but no change. Same code runs fine on my machine. (heard that before ?? :) )
I also tried to save the file on the server, then to get the file trough Image.FromFile(), but then I get "Cannot access a closed file."
How to resolve this ?

imgvariable is not used. – Darin Dimitrov Oct 23 at 17:16Graphics/Bitmapetc. The same problem occurs in the reverse, when you try to write a Graphic to a Response.Out stream. – Abel Oct 23 at 17:30Cannot access a closed fileerror is odd, but if you look through your real code, you may see places where you do not work correctly withIDisposableandusingblocks. This is usually the cause of resources that are still in use or that cannot be read or written to. – Abel Oct 23 at 17:44