我有一个包含图像控件的视图。
<Image
x:Name="img"
Height="100"
Margin="5"
Source="{Binding Path=ImageFullPath Converter={StaticResource ImagePathConverter}}"/>
绑定使用了一个转换器,除了设置为“OnLoad”之外,它什么都不BitmapCacheOption
做,这样当我尝试旋转文件时文件就会被解锁。
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
// value contains the full path to the image
string val = (string)value;
if (val == null)
return null;
// load the image, specify CacheOption so the file is not locked
BitmapImage image = new BitmapImage();
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.UriSource = new Uri(val);
image.EndInit();
return image;
}
这是我旋转图像的代码。val
始终为 90 或 -90,并且是我要旋转path
的文件的完整路径。.tif
internal static void Rotate(int val, string path)
{
//cannot use reference to what is being displayed, since that is a thumbnail image.
//must create a new image from existing file.
Image image = new Image();
BitmapImage logo = new BitmapImage();
logo.BeginInit();
logo.CacheOption = BitmapCacheOption.OnLoad;
logo.UriSource = new Uri(path);
logo.EndInit();
image.Source = logo;
BitmapSource img = (BitmapSource)(image.Source);
//rotate tif and save
CachedBitmap cache = new CachedBitmap(img, BitmapCreateOptions.None, BitmapCacheOption.OnLoad);
TransformedBitmap tb = new TransformedBitmap(cache, new RotateTransform(val));
TiffBitmapEncoder encoder = new TiffBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(tb)); //cache
using (FileStream file = File.OpenWrite(path))
{
encoder.Save(file);
}
}
我遇到的问题是当我得到BitmapCacheOption
toBitmapCacheOption.OnLoad
时,文件没有被锁定但是旋转并不总是旋转图像(我相信它每次都使用原始缓存值)。
如果我使用 BitmapCacheOption.OnLoad 所以文件没有被锁定,一旦图像被旋转,我如何更新图像控件?原始值似乎缓存在内存中。
旋转当前显示在视图中的图像是否有更好的选择?