如何分离图像中的像素并将它们放入C#数组?

时间:2012-02-18 09:30:17

标签: c# image pixel

我想导入照片并检查每个像素以确定其RGB值和 然后将每个像素(或其等效值在RGB中)放在一个数组或类似的数据结构中,以保持像素的原始顺序。

我需要知道的最重要的事情是如何分离像素并确定每个像素值。

2 个答案:

答案 0 :(得分:2)

        Bitmap img = (Bitmap)Image.FromFile(@"C:\...");

        Color[,] pixels = new Color[img.Width, img.Height];

        for (int x = 0; x < img.Width; x++)
        {
            for (int y = 0; y < img.Height; y++)
            {
                pixels[x, y] = img.GetPixel(x, y);
            }
        }

答案 1 :(得分:0)

一个快速版本的upvoted答案:

    public static int[][] ImageToArray(Bitmap bmp) {
        int height = bmp.Height;   // Slow properties, read them once
        int width = bmp.Width;
        var arr = new int[height][];
        var data = bmp.LockBits(new Rectangle(0, 0, width, height), 
                   System.Drawing.Imaging.ImageLockMode.ReadOnly, 
                   System.Drawing.Imaging.PixelFormat.Format32bppArgb);
        try {
            for (int y = 0; y < height; ++y) {
                arr[y] = new int[width];
                System.Runtime.InteropServices.Marshal.Copy(
                    (IntPtr)((long)data.Scan0 + (height-1-y) * data.Stride),
                    arr[y], 0, width);
            }
        }
        finally {
            bmp.UnlockBits(data);
        }
        return arr;
    }

使用Color.FromArgb()将像素值映射到Color。