我尝试保存BitmapSource时遇到问题。我总是在GDI +中遇到错误,或者该文件正由另一个进程使用。
保存bitmapimage的方法
protected override void Save()
{
Bitmap bitmap = Thumbnail.ToBitmap();
if (Angle % 360 == 0)
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipNone);
else if (Angle % 270 == 0)
bitmap.RotateFlip(RotateFlipType.Rotate270FlipNone);
else if (Angle % 180 == 0)
bitmap.RotateFlip(RotateFlipType.Rotate180FlipNone);
else if (Angle % 90 == 0)
bitmap.RotateFlip(RotateFlipType.Rotate90FlipNone);
bitmap.Save(Objects[0].FilePath);
Objects[0].RaisePropertyChanged("Thumbnail");
}
BitmapSource到位图转换
public static Bitmap ToBitmap(this BitmapSource bitmapsource)
{
using (MemoryStream stream = new MemoryStream())
{
BitmapEncoder enc = new BmpBitmapEncoder();
enc.Frames.Add(BitmapFrame.Create(bitmapsource));
enc.Save(stream);
using (var tempBitmap = new Bitmap(stream))
{
return new Bitmap(tempBitmap);
}
}
}
"缩略图"用于保存的来自get-property
public BitmapSource Image
{
get { return new BitmapImage(new Uri(FilePath)); }
}
文件的缩略图也用在视图中。我用windows shell api得到它。
public static BitmapSource GetThumbnail(this string This, BitmapSize size = BitmapSize.Large)
{
if (ShellObject.IsPlatformSupported)
{
ShellObject shellitem = ShellObject.FromParsingName(This);
try
{
if (size == BitmapSize.Small)
return shellitem.Thumbnail.SmallBitmap.ToBitmapSource();
else if (size == BitmapSize.Medium)
return shellitem.Thumbnail.MediumBitmap.ToBitmapSource();
else if (size == BitmapSize.Large)
return shellitem.Thumbnail.LargeBitmap.ToBitmapSource();
else
return shellitem.Thumbnail.ExtraLargeBitmap.ToBitmapSource(); ;
}
catch (Exception)
{
return null;
}
}
return null;
}
有没有解决方案?
由于 维姆
答案 0 :(得分:0)
尝试使用Application.current.dispatcher
Application.current.dispatcher(()=>Save());