如何在android中使用colorfilter反转位图颜色?
我有一个白色背景图像,它不适合我的应用程序的黑色背景。
我想让它具有黑色背景,或反转位图图像中的所有颜色。
我怎样才能做到这一点?
I have a white background image, it is not fit for my app's black background.
I want to make it have black background, or reverse all the colors in the bitmap image.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取位图的宽度和高度。将像素存储在数组中,然后迭代每个像素,测试白色(十六进制值)是否为真,然后将其替换为黑色值。这不是最好的解决方案。为什么不直接加载黑色位图?
在这里您可以找到颜色的十六进制值
http://www.w3schools.com/html/html_colors。 ASP
Get the width and the height of the bitmap. Store the pixels in array, then iterate each pixel, test for white color (hex value) if it is true than swap it with value for black. This is not the best solution. Why dont you just load black bitmap?
Here you can find hex values of the colors
http://www.w3schools.com/html/html_colors.asp