Exemplo n.º 1
0
        public static UnsafeBitmap GetImageFromBuffers(ImageBuffers buffers)
        {
            try
            {
                UnsafeBitmap bmp   = new UnsafeBitmap(buffers.Width, buffers.Height);
                int          count = 0;

                for (int i = 0; i < bmp.Width; i++)
                {
                    for (int j = 0; j < bmp.Height; j++)
                    {
                        int R = buffers.R[count];
                        int G = buffers.G[count];
                        int B = buffers.B[count++];

                        bmp.SetPixel(i, j, Color.FromArgb(R, G, B));
                    }
                }
                bmp.UnlockBits();
                return(bmp);
            }
            catch (Exception ex)
            {
                return(null);
            }
        }
Exemplo n.º 2
0
        public static ImageBuffers GetBuffersFromImage(Bitmap bmp)
        {
            try
            {
                UnsafeBitmap unsafeBitmap = new UnsafeBitmap(bmp);
                ImageBuffers buffers      = new ImageBuffers();
                buffers.R = new int[bmp.Width * bmp.Height];
                buffers.G = new int[bmp.Width * bmp.Height];
                buffers.B = new int[bmp.Width * bmp.Height];

                buffers.Width  = bmp.Width;
                buffers.Height = bmp.Height;

                int count = 0;

                for (int i = 0; i < bmp.Width; i++)
                {
                    for (int j = 0; j < bmp.Height; j++)
                    {
                        buffers.R[count]   = unsafeBitmap.GetPixel(i, j).R;
                        buffers.G[count]   = unsafeBitmap.GetPixel(i, j).G;
                        buffers.B[count++] = unsafeBitmap.GetPixel(i, j).B;
                    }
                }
                unsafeBitmap.UnlockBits();
                return(buffers);
            }
            catch (Exception ex)
            {
                return(null);
            }
        }