How can I colorize Android drawable by setting hue, saturation delta and brightness delta?

link|improve this question

61% accept rate
what is GIMP? screenshots? – Paresh Mayani Sep 14 '11 at 12:00
I changed the question, there's no GIMP in it now... Anyway I found out how to do what I want, I will answer this question after I test it. – fhucho Sep 14 '11 at 12:42
feedback

1 Answer

Haven't tested this yet but it should work.

public static BitmapDrawable colorize(BitmapDrawable d, float hue, float saturationDelta, float valueDelta) {
    Bitmap src = d.getBitmap();
    Bitmap b = src.copy(Bitmap.Config.ARGB_8888, true);
    for (int x = 0; x < b.getWidth(); x++) {
        for (int y = 0; y < b.getHeight(); y++) {
            int color = b.getPixel(x, y);
            float[] hsv = new float[3];
            Color.colorToHSV(color, hsv);
            hsv[0] = hue;
            hsv[1] += saturationDelta;
            hsv[2] += valueDelta;
            int newColor = Color.HSVToColor(Color.alpha(color), hsv);
            b.setPixel(x, y, newColor);
        }
    }
    return new BitmapDrawable(b);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.