skydoves / ColorPickerView

🎨 Android colorpicker for getting colors from any images by tapping on the desired color.
Apache License 2.0
1.58k stars 212 forks source link

The photo cannot extract black. #100

Open chengkaizone opened 1 year ago

chengkaizone commented 1 year ago

I plan to extract the color of an album image and it works fine, but the black part never returns the correct color value Set the picture code as follows: val bitmap = BitmapFactory.decodeFile(path) if (bitmap != null) { val drawable: Drawable = BitmapDrawable(resources, bitmap) colorPickerView.setPaletteDrawable(drawable) }