我正在使用 WPF BackgroundWorker 创建缩略图。我的工作函数看起来像:
private void work(object sender, DoWorkEventArgs e)
{
try
{
var paths = e.Argument as string[];
var boxList = new List<BoxItem>();
foreach (string path in paths)
{
if (!string.IsNullOrEmpty(path))
{
FileInfo info = new FileInfo(path);
if (info.Exists && info.Length > 0)
{
BitmapImage bi = new BitmapImage();
bi.BeginInit();
bi.DecodePixelWidth = 200;
bi.CacheOption = BitmapCacheOption.OnLoad;
bi.UriSource = new Uri(info.FullName);
bi.EndInit();
var item = new BoxItem();
item.FilePath = path;
MemoryStream ms = new MemoryStream();
PngBitmapEncoder encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(bi));
encoder.Save(ms);
item.ThumbNail = ms.ToArray();
ms.Close();
boxList.Add(item);
}
}
}
e.Result = boxList;
}
catch (Exception ex)
{
//nerver comes here
}
}
当这个函数完成并且在BackgroundWorker“Completed”函数启动之前,我可以在Vs2008的输出窗口中看到,产生了一个异常。看起来像:
A first chance exception of type 'System.NotSupportedException' occurred in PresentationCore.dll
生成的异常数量等于要生成的缩略图的数量。
使用“反复试验”方法,我将问题隔离到:BitmapFrame.Create(bi)
删除该行(使我的函数无用)也会删除异常。
我没有找到任何解释,或者在后台线程中创建缩略图的更好方法。