这个方法是利用PDF控件将每页转成Image列表返回,本来是没用到Task线程操作的,
但是pdf.ConvertPageToPNGMemoryStream()这个方法每页转换耗时将近1秒,
页数少还好说,页数多了就会卡界面,所以想用线程提高速度,
然后遇到这个奇怪的现象,假设PDF只有1页,单步调试中会报错,
注释下面这句的 i = 2 ???就很奇怪明明循环只跑1次就结束了啊,
求助大神能否帮忙解答一下,或者这个方法正确的优化写法是怎样的,
多谢多谢
private List<Image> PDFToImageList(Pdf.Document pdf)
{
List<Image> lst = new List<Image>();
Task[] tasks = new Task[pdf.Pages.Count];
for (int i = 1; i <= pdf.Pages.Count; i++)
{
Image img = new Image();
tasks[i - 1] = Task.Factory.StartNew(() =>
{
System.Windows.Media.Imaging.BitmapImage bitmapImage = new System.Windows.Media.Imaging.BitmapImage();
//调试报异常越界,i=2?
using (MemoryStream stream = pdf.ConvertPageToPNGMemoryStream(pdf.Pages[i]))
{
stream.Position = 0;
bitmapImage.BeginInit();
bitmapImage.CacheOption = System.Windows.Media.Imaging.BitmapCacheOption.OnLoad;
bitmapImage.StreamSource = stream;
bitmapImage.DecodePixelWidth = (int)(this.noticeWidth * 1.3);
bitmapImage.EndInit();
bitmapImage.Freeze();
container.Dispatcher.Invoke(() =>
{
img.Source = bitmapImage;
lst.Add(img);
});
}
});
}
Task.WaitAll(tasks);
return lst;
}