4

我有一个临时图像文件,我用它打开

Bitmap CapturedImg = (Bitmap)Image.FromFile("Item/Item.bmp");

因为是临时的,我想用另一个图像替换它以供进一步使用,但程序仍在使用该图像,我无能为力。

如何从图像中放手以便被替换?

4

6 回答 6

3

来自MSDN

该文件保持锁定状态,直到图像被释放。

而是从文件流中读取图像

using( FileStream stream = new FileStream( path, FileMode.Open, FileAccess.Read ) )
{
         image = Image.FromStream( stream );
}
于 2012-07-10T07:56:56.723 回答
2

我有一个类似的问题,无法使用 using,因为该文件被一些异步代码覆盖。我通过复制位图并释放原始位图解决了这个问题:

                Bitmap tmpBmp = new Bitmap(fullfilename);
                Bitmap image= new Bitmap(tmpBmp);
                tmpBmp.Dispose();
于 2012-07-10T08:02:44.350 回答
1

尝试使用此语法

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
于 2012-07-10T07:56:41.477 回答
0
using (var stream = System.IO.File.OpenRead("Item\Item.bmp"))
{
    var image= (Bitmap)System.Drawing.Image.FromStream(stream)
}
于 2012-07-10T07:59:49.483 回答
0

你也可以试试这个。

 BitmapImage bmpImage= new BitmapImage();
 bmpImage.BeginInit();
 Uri uri = new Uri(fileLocation);
 bmpImage.UriSource = uri;
 bmpImage.CacheOption = BitmapCacheOption.OnLoad;
 bmpImage.EndInit();
 return bmpImage;
于 2013-07-24T10:08:05.520 回答
0

这像:

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);
    }
}
于 2019-02-26T16:43:25.750 回答