gpt4 book ai didi

c# - .NET BitmapSource 正在锁定文件

转载 作者:行者123 更新时间:2023-11-30 19:14:21 29 4
gpt4 key购买 nike

我正在使用此 C# 代码访问图像文件,以便从中读取元数据。

BitmapSource img = BitmapFrame.Create(uri);

不幸的是,uri 指定的图像文件被锁定,直到程序结束。如何防止图像被锁定?

最佳答案

也许 this could help

编辑

BitmapSource img = BitmapFrame.Create(uri,BitmapCreateOptions.None,BitmapCacheOption.OnLoad);

BitmapCreateOptions.None = 默认选项

BitmapCacheOption.OnLoad = 在加载时将整个图像缓存到内存中。所有对图像数据的请求都从内存存储中填充。

来自 here

关于c# - .NET BitmapSource 正在锁定文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/812033/

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