好象不是上面一段的问题应该是这一段出问题了
Image img = Image.FromFile(file);
ImageFormat[] imgf = {ImageFormat.Jpeg, ImageFormat.Bmp, ImageFormat.Gif, ImageFormat.Png};
string[] imgs ={".jpg", ".bmp", ".gif", ".png"};
string  f = file.ToLower();
bool found=false;
for(int i=0;i<imgs.Length;i++)
{
if(img.RawFormat.Equals(imgf[i]))
{
if(!f.EndsWith(imgs[i]))
{
RightType=imgs[i];
return false;
}
found = true;
break;
}
}
img.Dispose();
return true;

解决方案 »

  1.   

    Calling the Dispose method allows the resources used by this Image to be reallocated for other purposes.Call Dispose when you are finished using the Image. The Dispose method leaves the Image in an unusable state. After calling Dispose, you must release all references to the Image so the garbage collector can reclaim the memory that the Image was occupying. For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method. Note:  
    Always call Dispose before you release your last reference to the Image. Otherwise, the resources it is using will not be freed until the garbage collector calls the Image object's Finalize method.
     我这边执行没问题 检查一下后续的代码