想制作一个16×16的汉字点阵字库,采用最土的办法,基本思路为: 
1. 生成一个16×16的2色位图 
2. 将汉字写入 
3. 保存成文件 
4. 分析文件取出点阵数据 现在碰到一个问题,生成的BMP文件是24bit的图像,分析起来太复杂了,但是如果在生成BITMAP类时加入参数: 
Bitmap image = new Bitmap(16, 16, System.Drawing.Imaging.PixelFormat.Format1bppIndexed); 
则在生成Graphics时就会产生异常“无法从带有索引像素格式的图像创建 Graphics 对象” 代码如下: 
Bitmap image = new Bitmap(16, 16, System.Drawing.Imaging.PixelFormat.Format1bppIndexed); 
//Bitmap image = new Bitmap("c:\\a.bmp"); 
Graphics g = Graphics.FromImage(image); g.Clear(Color.White); 
Font font = new Font("微软雅黑", 9); g.DrawString(this.textBox1.Text, font, Brushes.Black, 0, 0); image.Save("c:\\b.bmp", System.Drawing.Imaging.ImageFormat.Bmp); 
g.Dispose(); 
image.Dispose(); 请问有什么解决办法吗,或是有没有其它的思路,谢谢啦! 如能解决还有重谢啊:)