图像处理主要是图像的颜色矩阵和坐标矩阵进行处理,要实现变暗效果只需要对颜色矩阵中的RGB偏移减小即可,具体代码如下:
int brightness = -80; //RGB偏移量,变暗为负数
ColorMatrix matrix = new ColorMatrix();
matrix.set(new float[]{1, 0, 0, 0, brightness, 0, 1, 0, 0, brightness, 0, 0, 1, 0, brightness, 0, 0, 0, 1, 0});
ColorMatrixColorFilter cmcf = new ColorMatrixColorFilter(matrix);
imageView.setColorFilter(cmcf); //imageView为显示图片的View。
同理,如果要将图片的显示效果变亮,只需要将RGB偏移量增加,即brightness改为正数。
更多介绍参考 http://www.cnblogs.com/menlsh/archive/2013/02/03/2890888.html
原文地址:http://blog.csdn.net/vipycm/article/details/44354109