gpt4 book ai didi

image - C# 4.0 在创建 BitmapImage 后解锁图像

转载 作者:行者123 更新时间:2023-12-02 00:34:42 25 4
gpt4 key购买 nike

我正在使用现有图像创建 BitmapImage:

BitmapImage bmp = new BitmapImage();
bmp.BeginInit();
bmp.UriSource = new Uri(jpegPath, UriKind.Relative);
bmp.EndInit();

完成此操作后,我想从硬盘驱动器中删除图像,但它已被锁定。有什么方法可以解锁它以便将其删除?

最佳答案

bmp.CacheOption = BitmapCacheOption.OnLoad;

这会将图像完全加载到内存中,并且不会在图像文件上留下锁。

关于image - C# 4.0 在创建 BitmapImage 后解锁图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5116260/

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