需求:根据图片的颜色显示不同的背景颜色

解决方法1.使用谷歌官方的api中提供的方法Palette来实现。

缺点:不能保证颜色获取的到;也有可能获取部分颜色并不是想要的效果

2.比较笨的方式:遍历整张图片的像素点,将整个像素点的颜色值(去掉白色和纯黑色值)保存下来,选出颜色值最多的一个做为背景色。

a.方法:getPicturePixel:获取像素点的颜色值

/**

* 获得图片的像素方法

*

* @param bitmap

*/

public static ArrayListgetPicturePixel(Bitmap bitmap) {

int width = bitmap.getWidth();

int height = bitmap.getHeight();

// 保存所有的像素的数组,图片宽×高

int[] pixels = new int[width * height];

bitmap.getPixels(pixels, 0, width, 0, 0, width, height);

ArrayListrgb=new ArrayList<>();

for (int i = 0; i < pixels.length; i++) {

int clr = pixels[i];

int red = (clr & 0x00ff0000) >> 16; // 取高两位

int green = (clr & 0x0000ff00) >> 8; // 取中两位

int blue = clr & 0x000000ff; // 取低两位

// Log.d("tag", "r=" + red + ",g=" + green + ",b=" + blue);

int color = Color.rgb(red, green, blue);

//除去白色和黑色

if (color!=Color.WHITE && color!=Color.BLACK){

rgb.add(color);

}

}

return rgb;

}

b.删选出色值并赋值给imageview

ArrayListpicturePixel = BitmapUtil.getPicturePixel(bitmap);

//计数相同颜色数量并保存

HashMapcolor2=new HashMap<>();

for (Integer color:picturePixel){

if (color2.containsKey(color)){

Integer integer = color2.get(color);

integer++;

color2.remove(color);

color2.put(color,integer);

}else{

color2.put(color,1);

}

}

//挑选数量最多的颜色

Iterator iter = color2.entrySet().iterator();

int count=0;

int color=0;

while (iter.hasNext()) {

Map.Entry entry = (Map.Entry) iter.next();

int value = (int) entry.getValue();

if (count

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐