gpt4 book ai didi

C# 免费使用图像文件

转载 作者:太空狗 更新时间:2023-10-30 01:07:44 26 4
gpt4 key购买 nike

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

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

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

如何从图像中放手才能被替换?

最佳答案

来自 MSDN

The file remains locked until the Image is disposed.

改为从文件流中读取图像

using( FileStream stream = new FileStream( path, FileMode.Open, FileAccess.Read ) )
{
image = Image.FromStream( stream );
}

关于C# 免费使用图像文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11408857/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com