一种方法直接读文件 bmp文件的文件头和信息头共占用54字节 跳过54字节直接读取位图数据 Stream stream = File.OpenRead("image.bmp"); // 打开位图文件 byte[] buffer = new byte[stream.Length - 54]; // 缓冲区,文件长度减去文件头和信息头的长度 stream.Position = 54; // 跳过文件头和信息头 stream.Read(buffer, 0, buffer.Length); // 读取位图数据,位图数据是颠倒的 另一种方法先加载图像 然后从中复制位图数据 Bitmap bmp = new Bitmap(Image.FromFile("image.bmp")); // 加载图像 BitmapData bmdat = bmp.LockBits(new Rectangle(Point.Empty, bmp.Size), ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb); // 锁定位图 byte[] buffer = new byte[bmdat.Stride * bmdat.Height]; // 缓冲区,用来装载位图数据 Marshal.Copy(bmdat.Scan0, buffer, 0, buffer.Length); // 复制位图数据 bmp.UnlockBits(bmdat); // 解除锁定