将图像转换为ARGB阵列的最快方法

时间:2014-06-17 18:20:33

标签: c# arrays image argb

我想创建一个删除某个文件夹中重复照片的应用程序,这样我就需要将图像转换为ARGB数组[one diemnsion]然后比较它们。 将图像转换为ARGB阵列的最快方法是什么? 或者如何改进这段代码?

 Image img;
 using (FileStream stream = new FileStream(imagefile, FileMode.Open))
            {
                img = Image.FromStream(stream);
            }

 using (Bitmap bmp = new Bitmap(img))
            {
                int[] argb = new int[bmp.Width * bmp.Height];
                for (int x = 0; x < bmp.Width; x++)
                {

                    for (int y = 0; y < bmp.Height; y++)
                    {

                        Color pxl = bmp.GetPixel(x, y);

                        argb[x * y] = pxl.ToArgb();



                    }
                }
              }

1 个答案:

答案 0 :(得分:0)

将图像转换为位图后,所有像素的半透明性值都为255 ...