我成功实现了通过来自用户的SeekBars选择的值来调整ImageView的对比度和/或亮度的功能。对于对比度,它看起来像这样(亮度相似):

// Contrast
ColorMatrix colorMatrix = new ColorMatrix();
colorMatrix.set(new float[] {
        scale, 0, 0, 0, translate,   // Red
        0, scale, 0, 0, translate,   // Green
        0, 0, scale, 0, translate,   // Blue
        0, 0, 0, 1, 0 });            // Alpha

imageView.setColorFilter(new ColorMatrixColorFilter(colorMatrix);


因此,仅通过缩放(乘法)或将RGB值转换为另一个值即可调整对比度和/或亮度。

如何做同样的事情(使用矩阵)来调整图像的色温?

最佳答案

我刚刚为我的应用程序创建了一个这样的矩阵来调整色温。

ColorMatrix colorMatrix = new ColorMatrix();

colorMatrix.set(new float[] {
RED/255.0f, 0, 0, 0, 0,
0, GREEN/255.0f, 0, 0, 0
0, 0, BLUE/255.0f, 0, 0,
0, 0, 0, 1, 0});
imageView.setColorFilter(new ColorMatrixColorFilter(colorMatrix);


例如,您可以从此处获取RED,GREEN和BLUE的值:
http://www.vendian.org/mncharity/dir3/blackbody/UnstableURLs/bbr_color.html

它工作得非常好,甚至可以对色温非常强的图像进行相应的调整:)

关于android - 在ImageView上调整色温,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21480250/

10-12 00:31