请正确解释您的问题。“我缺少字节”不是可以解决的。你期望什么数据,你看到了什么?
Bitmap.Save()
将根据指定的格式返回数据,在所有情况下,它不仅包含像素数据(描述宽度和高度、颜色/调色板数据等的标题)。如果你只想要一个像素数据数组,你最好看看Bimap.LockBits()
:
Bitmap bmp = new Bitmap("c:\\fakePhoto.jpg");
// Lock the bitmap's bits.
Rectangle rect = new Rectangle(0, 0, bmp.Width, bmp.Height);
System.Drawing.Imaging.BitmapData bmpData = bmp.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite, bmp.PixelFormat);
// Get the address of the first line.
IntPtr ptr = bmpData.Scan0;
// Declare an array to hold the bytes of the bitmap.
int bytes = Math.Abs(bmpData.Stride) * bmp.Height;
byte[] rgbValues = new byte[bytes];
// Copy the RGB values into the array.
System.Runtime.InteropServices.Marshal.Copy(ptr, rgbValues, 0, bytes);
现在该rgbValues
数组包含源位图中的所有像素,每个像素使用三个字节。我不知道你为什么想要一系列短裤,但你必须能够从这里弄清楚。