Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bitmap to int[] using Marshal.Copy()

Tags:

I'm using Marshal.Copy() to copy the pixel information from a Bitmap to an int[] array, the problem resides in the fact that the information that is coming to this array is coming all wrong, like:

             [0] = -8682109; 
             [1] = -8682109; 
             [2] = -8616573; 
             [3] = -8616573; 
             [4] = -8550527; 
             and so on...

the code for the method is:

    private unsafe int[] BmpToBytes_Unsafe(Bitmap bmp)
    {
        BitmapData bData = bmp.LockBits(new Rectangle(new Point(), bmp.Size),
            ImageLockMode.ReadOnly,
            PixelFormat.Format32bppRgb);

        // number of bytes in the bitmap
        byteCount = bData.Stride * (bmp.Height);

        int[] bytes = new int[byteCount / 4];

        Marshal.Copy(bData.Scan0, bytes, 0, byteCount/4);

        // don't forget to unlock the bitmap!!
        bmp.UnlockBits(bData);

        return bytes;

When I was using a byte[] array, the information that was stored was correct, so I don't know what is happening here.

like image 208
João Cardoso Avatar asked Jan 04 '10 11:01

João Cardoso


1 Answers

Those values are perfectly normal. They are 32bpp pixels with the alpha channel at 0xff, the usual value. In other words: -8682109 == 0xff7b8583. Any alpha value >= 128 will make the value negative because it sets the sign bit.

Using uint[] instead of int[] can make that easier to see.

like image 78
Hans Passant Avatar answered Oct 03 '22 21:10

Hans Passant