我的代码有问题。读完wbmp数据后,得到宽度&高度,我将setPixel根据数据转换成biarray。但是我的最后一个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);
}
}