I want to make a int32[] bits array with an original bitmap
Is there any way to create a int32[] that including the original bitmap?
so that I can read the pixel using
int index = x + (y * Width);
int col = Bits[index];
Color result = Color.FromArgb(col);
instead of the
bitmap.GetPixel()