Exemplo n.º 1
0
        public static byte[] CopyAllPixels(this BitmapSource bs)
        {
            var bytes = new byte[bs.GetStride() * bs.PixelHeight];

            bs.CopyPixels(bytes, bs.GetStride(), 0);
            return(bytes);
        }