我的代码有问题。读取 wbmp 数据后,得到宽度和高度,我根据转换成双数组的数据设置像素。但是我的最终 png 文件包含一张看起来像假定图片但某些像素位置不正确的图片。(请假设宽度始终是 8 的倍数,即精确的 x 字节,因此可以忽略填充零)
我的猜测是我的代码错误或读取/转换数据时发生了一些错误。
我花了几个小时寻找原因,但不能这样做。你们可以帮帮我。
以下是我的代码:
using System;
using System.Drawing;
using System.IO;
using System.Collections;
class Program
{
static void Main(string[] args)
{
BinaryReader binReader = new BinaryReader(File.Open(args[0], FileMode.Open));
byte[] aa = new byte[1000];
int width, height;
try
{
//read the bytes until the end of stream
for (int i = 0; i<aa.Length; i++)
{
aa[i] = binReader.ReadByte();
}
}
catch (EndOfStreamException)
{
Console.WriteLine("End of the Stream");
}
//once end is reached,
finally
{
width = aa[2];
height = aa[3];
Console.Write("Width: " + width);
Console.Write(" Height: " + height + "\n");
//Conversion
BitArray bits = new BitArray(aa); //convert bytes array to bit array
//Conversion Ends
Bitmap image = new Bitmap(width, height);
int index = 32;
for (int r = 0; r < height; r++)
{
for (int c = 0; c < width; c++)
{
if (bits[index] == false)
{
image.SetPixel(c, r, Color.Black);
index++;
}
else
{
image.SetPixel(c, r, Color.White);
index++;
}
}
}
String n = "aa";
image.Save(n + ".png", System.Drawing.Imaging.ImageFormat.Png);
}
Console.Write("\nPress any key to continue . . .");
Console.ReadKey(true);
}
}