如何在android中使用colorfilter反转位图颜色?

发布于 2024-11-25 18:33:11 字数 88 浏览 2 评论 0原文

我有一个白色背景图像,它不适合我的应用程序的黑色背景。

我想让它具有黑色背景,或反转位图图像中的所有颜色。

我怎样才能做到这一点?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冰雪之触 2024-12-02 18:33:11

获取位图的宽度和高度。将像素存储在数组中,然后迭代每个像素,测试白色(十六进制值)是否为真,然后将其替换为黑色值。这不是最好的解决方案。为什么不直接加载黑色位图?

Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.r);  //example, 
                int[] pixels = new int[bm.getWidth()*bm.getHeight()];
                bm.getPixels(pixels, 0, bm.getWidth(),0, 0, bm.getWidth(), bm.getHeight()); //filling the array, this might throw some outofboundaryindex exception for the array, check again.
                int i = 0;
               while(i!=bm.getWidth()*bm.getHeight())
               {
                   if(pixels[i]==hexforblack)
                   {
                       swap it with hex of white
                   }
                   i++;
               }

在这里您可以找到颜色的十六进制值

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?

Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.r);  //example, 
                int[] pixels = new int[bm.getWidth()*bm.getHeight()];
                bm.getPixels(pixels, 0, bm.getWidth(),0, 0, bm.getWidth(), bm.getHeight()); //filling the array, this might throw some outofboundaryindex exception for the array, check again.
                int i = 0;
               while(i!=bm.getWidth()*bm.getHeight())
               {
                   if(pixels[i]==hexforblack)
                   {
                       swap it with hex of white
                   }
                   i++;
               }

Here you can find hex values of the colors

http://www.w3schools.com/html/html_colors.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文