在vb.net中如何替换色彩模式?
开始的时候我定义图片框的image层drawpic.Image = New System.Drawing.Bitmap(Me.Width, Me.Height, Imaging.PixelFormat.Format32bppArgb) 指定图像中每个像素的颜色数据的格式Format32bppArgb,但是现在我想把指定图像中每个像素的颜色数据的格式换成Format4bppIndexed,我的思路是我新建一个bitmap=New System.Drawing.Bitmap(Me.Width, Me.Height, Imaging.PixelFormat.Format4bppIndexed),在将以前的图片付给新建的bmp,但是最后保存下来的图片的每个像素的颜色数据的格式仍是Format32bppArgb,请大家指教阿!!!!
[解决办法]
dim bitmap as New System.Drawing.Bitmap(Me.Width,Me.Height,Imaging.PixelFormat.Format4bppIndexed)
dim g as graphics = graphics.fromimage(bitmap)
g.drawimage(drawpic.image,.........)
[解决办法]
我帮顶,分给我吧~
[解决办法]
你要把它灰度化?
[解决办法]
末班车!