Как я могу поместить значения в массив изображения? На самом деле я не могу сделать это во всем массиве из-за bmpData.Stride. Размер хранимых байтов должен быть около 100, фактически 40.
Я получаю исключение accessviolation при использовании System.Runtime.InteropServices.Marshal.Copy
.
Я использовал в примере кода из Библиотека MSDN - метод Bitmap.LockBits (Rectangle, ImageLockMode, PixelFormat)
Почему я не могу написать что-то подобное?
// Declare an array to hold the bytes of the bitmap.
int bytes = Math.Abs(bmpData.Width) * b.Height;
Весь мой код:
//Create new bitmap 10x10 = 100 pixels
Bitmap b = new Bitmap(10, 10, System.Drawing.Imaging.PixelFormat.Format1bppIndexed);
Rectangle rect = new Rectangle(0, 0, b.Width, b.Height);
System.Drawing.Imaging.BitmapData bmpData =
b.LockBits(rect, System.Drawing.Imaging.ImageLockMode.ReadWrite,
b.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) * b.Height;//error if bmpData.Width
byte[] rgbValues = new byte[bytes];
// Copy the RGB values into the array.
System.Runtime.InteropServices.Marshal.Copy(ptr, rgbValues, 0, bytes);
//Create random constructor
Random r = new Random();
//Generate dots in random cells and show image
for (int i = 0; i < bmpData.Height; i++)
{
for (int j = 0; j < b.Width; j++)
{
rgbValues[i + j] = (byte)r.Next(0, 2);
}
}
// Copy back values into the array.
System.Runtime.InteropServices.Marshal.Copy(rgbValues, 0, ptr, bytes);
// Unlock the bits.
b.UnlockBits(bmpData);
// Draw the modified image.
pictureBox1.Image = (Image)b;