バイト配列の各インデックスがビットマップを表すバイト配列に変換しようとしているビットマップの配列があります。これを行う方法を理解するのに苦労しています。誰か提案があれば、私に知らせてください。ありがとう!
private void ConvertBitmapToBytes(Bitmap[] BitmapArray)
{
byte[][] BitmapBytes = new byte[BitmapArray.Length][];
ImageConverter convert = new ImageConverter();
for (int i = 0; i < BitmapArray.Length; i++)
{
BitmapBytes[i] = new byte[BitmapArray.Length];
BitmapBytes[i][i] = convert.ConvertTo(BitmapArray[i], typeof(byte[]));
}
}