0

我想Image[]在列表视图中显示一个,但不知道如何。我在网上搜索,共识似乎ImageList是为此首选。它可以正常工作和显示,但不适合我的需要。

我将如何将此代码转换为使用 anImage[]而不是 an ImageList

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{

     string dir = (string)e.Argument;
     imageArr = Directory.GetFiles(dir, "*.jpeg", SearchOption.AllDirectories);

     picList = new ImageList();

     toolStripStatusLabel1.Text = "Generating thumbnails...";

     for (int i = 0; i < imageArr.Length; i++)
     {
         Image img = Image.FromFile(imageArr[i]);
         int width = img.Width / 10;
         int height = img.Height / 10;
         Image pic = img.GetThumbnailImage(width, height, null, new IntPtr());
         picList.Images.Add(pic);

         int procent = ((i + 1) * 100) / imageArr.Length;
         bw.ReportProgress(procent);
     }

     bw.ReportProgress(0);
     toolStripStatusLabel1.Text = "";

     populateListView(picList);
 }

 private delegate void populateListViewDelegate(ImageList picList);

 private void populateListView(ImageList picList)
 {
     if (InvokeRequired)
     {
         this.Invoke(new populateListViewDelegate(populateListView), picList);
         return;
     }

     Size thumbSize = new Size(200, 141);
     listView1.View = View.LargeIcon;
     picList.ImageSize = thumbSize;
     listView1.LargeImageList = picList;

     toolStripStatusLabel1.Text = "Adding thumbnails to listview...";

     for (int i = 0; i < picList.Images.Count; i++)
     {
         ListViewItem item = new ListViewItem();
         item.ImageIndex = i;
         listView1.Items.Add(item);

         int procent = ((i + 1) * 100) / picList.Images.Count;
         bw.ReportProgress(procent);
     }

     bw.ReportProgress(0);
     toolStripStatusLabel1.Text = "";
 }

显然int widthint height如果我理解正确的话,因为 ImageList 对所有图像都具有相同的大小,但我当时并不知道,这就是为什么我懒惰的自我将代码留在那里的原因。

基本上,我前面提到的“需求”是这些“缩略图”应该能够有不同的大小。

对解决方法有任何帮助,关于我的问题的提示,或者我应该采取不同的方法吗?

4

1 回答 1

0

您需要ImageSize在添加图像之前设置。如果您更改ImageSize,任何以前添加的图像都将被删除。请参阅此处的备注

在添加任何图像之前,您可能还想将 ColorDepth 设置为 32 位。

于 2013-06-06T02:30:16.587 回答