3

情况就是这样,我有一个 SeekBar,当我滑动它时,我想改变 ImageView 中图像的色调。我所看到的关于改变色调的所有事情都需要使用 ColorMatrix,但我不知道如何将位图与颜色矩阵相关联。建议?

4

2 回答 2

5
    public static void adjustHue(ColorMatrix cm, float value)
    {
        value = cleanValue(value, 180f) / 180f * (float) Math.PI;
        if (value == 0)
        {
            return;
        }
        float cosVal = (float) Math.cos(value);
        float sinVal = (float) Math.sin(value);
        float lumR = 0.213f;
        float lumG = 0.715f;
        float lumB = 0.072f;
        float[] mat = new float[]
        { 
                lumR + cosVal * (1 - lumR) + sinVal * (-lumR), lumG + cosVal * (-lumG) + sinVal * (-lumG), lumB + cosVal * (-lumB) + sinVal * (1 - lumB), 0, 0, 
                lumR + cosVal * (-lumR) + sinVal * (0.143f), lumG + cosVal * (1 - lumG) + sinVal * (0.140f), lumB + cosVal * (-lumB) + sinVal * (-0.283f), 0, 0,
                lumR + cosVal * (-lumR) + sinVal * (-(1 - lumR)), lumG + cosVal * (-lumG) + sinVal * (lumG), lumB + cosVal * (1 - lumB) + sinVal * (lumB), 0, 0, 
                0f, 0f, 0f, 1f, 0f, 
                0f, 0f, 0f, 0f, 1f };
        cm.postConcat(new ColorMatrix(mat));
    }

    private static float cleanValue(float p_val, float p_limit)
    {
        return Math.min(p_limit, Math.max(-p_limit, p_val));
    }


-------

while drawing from canvas ... create an object of paint and ... set... 
ColorMatrix mat = new ColorMatrix();`
adjustHue(mat, 110);
paint.setColorFilter(new ColorMatrixColorFilter(mat));


----
canvas.draw(bmp, 0,0,paint);
于 2013-07-05T13:57:48.687 回答
1

这里有一个以灰度绘制位图的示例。

http://www.mail-archive.com/android-developers@googlegroups.com/msg38890.html

只需替换cm.setSaturation(0);cm.setRotate(int axis, float degrees);.

于 2012-02-22T19:44:49.247 回答