Android识别图片中的颜色

识别图片中的颜色

  • 导入包
implementation 'com.android.support:palette-v7:28.+'
  • 相关代码
Palette.from(bmp).generate(new Palette.PaletteAsyncListener() {
    @Override
    public void onGenerated(Palette palette) {
        if (palette.getVibrantSwatch()!=null)
            view1.setBackgroundColor(palette.getVibrantSwatch().getRgb());
        if (palette.getDarkVibrantSwatch()!=null)
            view2.setBackgroundColor(palette.getDarkVibrantSwatch().getRgb());
        if (palette.getLightVibrantSwatch()!=null)
            view3.setBackgroundColor(palette.getLightVibrantSwatch().getRgb());
        if (palette.getMutedSwatch()!=null)
            view4.setBackgroundColor(palette.getMutedSwatch().getRgb());
        if (palette.getDarkMutedSwatch()!=null)
            view5.setBackgroundColor(palette.getDarkMutedSwatch().getRgb());
        if (palette.getLightMutedSwatch()!=null)
            view6.setBackgroundColor(palette.getLightMutedSwatch().getRgb());
    }
});
  • 这里提供了六种图片上的有颜色选择,根据需求使用
上一篇:课程设计- GMC1025 Robotique industrielle (工业机器人) – Projet Cellule fiexible


下一篇:【实用小站】配色网站