Image.FromFile 方法锁住文件解决方法

Posted 勇者工作室

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Image.FromFile 方法锁住文件解决方法相关的知识,希望对你有一定的参考价值。

Image.FromFile  一旦使用后,对应的文件在一直调用 其生成的Image对象被Disponse前都不会被解除锁定,这就造成了一个问题,就是在这个图形被解锁前无法对图像进行操作(比如删除,修改等操作).

 

//读取文件流
FileStream fileStream = new FileStream(iconPath, FileMode.Open, FileAccess.Read);

int byteLength = (int)fileStream.Length;
byte[] fileBytes = new byte[byteLength];
fileStream.Read(fileBytes, 0, byteLength);

//文件流关閉,文件解除锁定
fileStream.Close();

pictureBox1.Image = Image.FromStream(new MemoryStream(fileBytes));

因为FromStream方法参数应用的流必须一直保持打开,故代码中有一个文件流向MemeoryStream流的转换,从而可以关闭文件流,保持MemoryStream流的打开状态。

以上是关于Image.FromFile 方法锁住文件解决方法的主要内容,如果未能解决你的问题,请参考以下文章

Graphics

Image.FromFile() 或 FromStream() 在 GdiplusStartup 上挂起

System.Drawing.Image.FromFile() 上的内存不足异常

GDI +中发生了一般错误

Image.FromFile 是不是为无效的图像格式抛出 OutOfMemoryException 的原因?

svn 被锁住 is already locked Please execute the 'Cleanup' command. 问题解决