热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

WinFormPictureBox删除图片重新加载,显示System.IO.IOException:文件“**.png”正由另一进程使用,因此该进程无法访问此文件

获取图片:if(openFileDialog1.ShowDialog()DialogResult.OK){stringfullpathopenFileDialog1

在这里插入图片描述
获取图片:

if (openFileDialog1.ShowDialog() == DialogResult.OK)
{ string fullpath = openFileDialog1.FileName;//文件路径pictureBox2.Image = GetFile(fullpath);
}

// 将内存流转为图片private Image GetFile(string path){MemoryStream stream = ReadFile(path);return stream == null ? null : Image.FromStream(stream);}


// 将文件转为内存流
private MemoryStream ReadFile(string path)
{
if (!File.Exists(path))
return null;

using (FileStream file = new FileStream(path, FileMode.Open)){byte[] b = new byte[file.Length];file.Read(b, 0, b.Length);MemoryStream stream = new MemoryStream(b);return stream;}

}


不显示并释放资源

if (result == DialogResult.OK)
{Image image = pictureBox2.Image;pictureBox2.Image = null;image.Dispose();
}

在这里插入图片描述




推荐阅读
author-avatar
nlyyan_613
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有