C#打开多个图像进行数组

本文关键字:数组 图像 | 更新日期: 2023-09-27 18:25:15

我是C#的新手,我正试图将多个图像打开到一个数组中,以便稍后操作它们的像素,这是我迄今为止的代码:

private void button1_Click(object sender, EventArgs e)
    {
        openFileDialog1.Filter = "Image Files(*.jpg; *.jpeg; *.bmp)|*.jpg; *.jpeg; *.bmp";
        if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            Bitmap[] images = new Bitmap(openFileDialog1.FileNames);
            MessageBox.Show(images.Length+" images loaded","",MessageBoxButtons.OK);
        }
    }

我的这条线有问题

Bitmap[] images = new Bitmap(openFileDialog1.FileNames);

你能帮我吗?

C#打开多个图像进行数组

使用:

 images = openFileDialog1.FileNames.Select(fn=>new Bitmap(fn)).ToArray();

因为openFileDialog1.FileNames是字符串数组,位图构造函数需要单个图像文件名

Bitmap[] images = new Bitmap(openFileDialog1.FileNames);
Bitmap[] images // Is an array of Bitmap
new Bitmap(openFileDialog1.FileNames); // Returns a single (new) Bitmap

我建议使用列表。当你刚接触C#时,使用foreach要比Pavel Kymets建议的LinQ容易得多。

List<Bitmap> images = new List<Bitmap>();
foreach(string file in openFileDialog1.FileNames) {
    images.Add(new Bitmap(file));
}

或者,如果你还没有准备好lambdas,比如

openFileDialog1.Filter = "Image Files(*.jpg; *.jpeg; *.bmp)|*.jpg; *.jpeg; *.bmp";       
List<BitMap> images = new List<BitMaps>()
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
  foreach(string fileName in openFileDialog1.FileNames)
  {
     images.Add(new Bitmap(fileName));
  }
} 
MessageBox.Show(String.Format("{0} images loaded",images.Count),"",MessageBoxButtons.OK);