我有一个System.Drawing.Image类型的对象,并希望使每个像素具有一些特定的颜色,例如黑色,透明(即,为此像素将alpha设置为0).
做这个的最好方式是什么?
一种好的方法是使用ImageAttributes类设置要在绘制时重新映射的颜色列表.这样做的好处是良好的性能,并允许您非常容易地改变重映射颜色.尝试类似这样的代码......
ImageAttributes attribs = new ImageAttributes(); ListcolorMaps = new List (); // // Remap black top be transparent ColorMap remap = new ColorMap(); remap.OldColor = Color.Black; remap.NewColor = Color.Transparent; colorMaps.Add(remap); // // ...add additional remapping entries here... // attribs.SetRemapTable(colorMaps.ToArray(), ColorAdjustType.Bitmap); context.Graphics.DrawImage(image, imageRect, 0, 0, imageRect.Width, imageRect.Height, GraphicsUnit.Pixel, attribs);