如何在 Android 中为位图着色?
我使用以下调用将位图绘制到画布上:
_playerImage = BitmapFactory.decodeResource(getResources(), R.drawable.player);
现在如何将此图像着色为白色? 当敌人被子弹击中时,我试图让图像像顶级卷轴游戏中那样闪烁白色。
我需要使用 BitmapFactory 以外的其他东西吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
绘制位图时,您可以在
Paint
上使用ColorFilter
。You can use a
ColorFilter
on yourPaint
when you draw the bitmap.