Vitaliy Vikulov
Vitaliy Vikulov

Reputation: 21

AS3 change bitmap color to black color

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

Answers (1)

Vitaliy Vikulov
Vitaliy Vikulov

Reputation: 21

I understand how to do it.

yourBitmap.transform.colorTransform = new ColorTransform(0, 0, 0, 1);

Upvotes: 1

Related Questions