Android调色板:为什么不使用这个特定的图像?

时间:2014-11-07 07:14:54

标签: android android-support-library palette

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

中的Palette API

以下代码适用于数百张图片,完全没问题。我根据调色板结果设置文本和背景颜色。结果很棒,非常漂亮(如果你想在你的应用程序中重复使用它,请不要犹豫!)。

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

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

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

如果有人可以帮我重现这个错误,或者告诉我它只发生在我身边,那就太棒了

2 个答案:

答案 0 :(得分:4)

图像似乎只包含鲜艳的色彩,因此很难创建适合它的柔和调色板。算法没有这样做就不足为奇了。

尝试使用getVibrantColor()功能,如果暗光/光线太暗则相同。

答案 1 :(得分:0)

我认为“光线柔和”之间没有微小的色差。并且'黑暗静音'调色板算法中的颜色,即一个不应该用作另一个上面的文本颜色。

在谷歌IO的Romain Guy演示中,他使用了轻微的静音'为了背景和充满活力的'用于文字颜色。

你不应该为文字使用鲜艳的颜色吗?