Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I draw a bitmap onto a canvas using the following call:

_playerImage = BitmapFactory.decodeResource(getResources(), R.drawable.player);

How can I now tint this image white? I'm trying to make the image flash white like in top-scrollers when an enemy is hit by a bullet.

Do I need to use something other than BitmapFactory?

share|improve this question

1 Answer

up vote 20 down vote accepted

You can use a ColorFilter on your Paint when you draw the bitmap.

share|improve this answer
2  
Brilliant! Thanks a ton! "Paint p = new Paint(Color.RED); ColorFilter filter = new LightingColorFilter(Color.RED, 1); p.setColorFilter(filter);" – FoppyOmega Aug 17 '10 at 23:05
1  
Hi Romain, is there any method of drawing a tinted bitmap that does not involve creating a new ColorFilter instance for each draw call? Lets say you have couple of 100 sprites that you want to tint in different colors. that would require a new lightingColorFilter for each drawBitmap call. That really does not go along nicely with the whole project butter philosophy of "don't allocate in your render call". Especially since tinting has a direct correlation to the blend/modulate opengl backend which would not require any object being allocated. what about a drawBitmap(..., int mul, int add) call? – P.Melch Jul 15 '12 at 16:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.