Reputation: 21
I have a image of the Bitmap class. How I can change it's color to the black (color of all pixels except alpha)?
Upvotes: 1
Views: 482
Reputation: 21
I understand how to do it.
yourBitmap.transform.colorTransform = new ColorTransform(0, 0, 0, 1);
Upvotes: 1