Change color in bitmap
I need to change Black color to White color in bitmap that created from array of pixels.
Thank's
Alexei
I need to change Black color to White color in bitmap that created from array of pixels.
Thank's
Alexei
Try this:
Bitmap b = new Bitmap(image); for (int x=0; x<b.Width; x++) |
-chris