当前位置:编程学习 > C#/ASP.NET >>

如何创建Graphics?

Bitmap bmp1 = new Bitmap(500, 600, PixelFormat.Format1bppIndexed);
Graphics g1 = Graphics.FromImage(bmp);


以上语句出现错误:无法从带有索引像素格式的图像创建 Graphics 对象。

应该是PixelFormat.Format1bppIndexed导致的,这种格式的图像怎么处理才行啊?高手指示一下
--------------------编程问答-------------------- Bitmap bmp1 = new Bitmap(500, 600);
Graphics g1 = Graphics.FromImage(bmp); --------------------编程问答-------------------- 看到PixelFormat.Format1bppIndexed没有,如果是默认的格式,还用到这来问啊? --------------------编程问答-------------------- study~!
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,