我有一个临时图像文件,我用它打开
Bitmap CapturedImg = (Bitmap)Image.FromFile("Item/Item.bmp");
因为是临时的,我想用另一个图像替换它以供进一步使用,但程序仍在使用该图像,我无能为力。
如何从图像中放手以便被替换?
来自MSDN
该文件保持锁定状态,直到图像被释放。
而是从文件流中读取图像
using( FileStream stream = new FileStream( path, FileMode.Open, FileAccess.Read ) )
{
image = Image.FromStream( stream );
}
我有一个类似的问题,无法使用 using,因为该文件被一些异步代码覆盖。我通过复制位图并释放原始位图解决了这个问题:
Bitmap tmpBmp = new Bitmap(fullfilename);
Bitmap image= new Bitmap(tmpBmp);
tmpBmp.Dispose();
尝试使用此语法
using (Bitmap bmp = (Bitmap)Image.FromFile("Item/Item.bmp"))
{
// Do here everything you need with the image
}
// Exiting the block, image will be disposed
// so you should be free to delete or replace it
using (var stream = System.IO.File.OpenRead("Item\Item.bmp"))
{
var image= (Bitmap)System.Drawing.Image.FromStream(stream)
}
你也可以试试这个。
BitmapImage bmpImage= new BitmapImage();
bmpImage.BeginInit();
Uri uri = new Uri(fileLocation);
bmpImage.UriSource = uri;
bmpImage.CacheOption = BitmapCacheOption.OnLoad;
bmpImage.EndInit();
return bmpImage;
这像:
public Bitmap OpenImage(string filePath) =>
return new Bitmap(filePath).Clone();
或者像这样:
public Bitmap OpenImage(string filePath)
{
using (Bitmap tmpBmp = (Bitmap)Image.FromFile(filePath))
{
return new Bitmap(tmpBmp);
}
}
或者像这样:
public Bitmap OpenImage(string filePath)
{
using (var stream = System.IO.File.OpenRead(filePath))
{
return (Bitmap)System.Drawing.Image.FromStream(stream);
}
}