我目前正在使用支持库(https://developer.android.com/tools/support-library/features.html#v7-palette)中的Palette API

下面的代码可以很好地处理数百张图片,完全没有问题。我根据调色板结果设置文本和背景颜色。结果非常棒,而且看起来非常好(如果您想在应用程序中重复使用它,请不要犹豫!)。

不幸的是,在数百张图片中,只有一张不起作用,并且给出了奇怪的结果。
这是这个=> http://www.cineswellington.com/images/film/140929075044.jpg

由于Palette没有文档或 Debug模式,所以我真的很想知道会发生什么,是否有办法了解原始图片中是否存在缺陷或其他问题。

Picasso.with(getActivity()).load("http://www.cineswellington.com/images/film/140929075044.jpg").into(t);

private Target t = new Target() {
    @Override
    public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from) {
        Palette.generateAsync(bitmap, new Palette.PaletteAsyncListener() {
            public void onGenerated(Palette palette) {
                ((ImageView) v.findViewById(R.id.iv)).setImageDrawable(new BitmapDrawable(bitmap));
                //At this point, the ImageView is correctly filled, so the bitmap object has no issue.
                int textColor = palette.getLightMutedColor(android.R.color.darker_gray);
                int bgColor = palette.getDarkMutedColor(android.R.color.white);
                Log.d("CVE","textColorInt: "+ textColor);
                Log.d("CVE","bgColorInt: "+bgColor);
                Log.d("CVE","textColorHexa: "+String.format("#%06X", 0xFFFFFF & textColor));
                Log.d("CVE","bgColorHexa: "+String.format("#%06X", 0xFFFFFF & bgColor));
            }
        });


    }
};

这是输出:
textColorInt: 17170432
bgColorInt: 17170443
textColorHexa: #060000
bgColorHexa: #06000B

如果有人可以帮助我重现该错误或告诉我它只是在我这边发生,那真是太棒了

最佳答案

该图像似乎只包含鲜艳的色彩,因此很难创建适合它的柔和调色板。该算法未能做到这一点也就不足为奇了。

如果暗/亮静音太相似,请尝试使用getVibrantColor()函数。

10-07 19:48