图片置灰处理

来源:互联网 发布:黎明杀机优化补丁 编辑:程序博客网 时间:2024/04/29 09:12
1.//像素过滤矩阵      
2.public final static float[] BT_SELECTED = new float[] {         
3.    0.308f, 0.609f, 0.082f, 0, 0,       
4.    0.308f, 0.609f, 0.082f, 0, 0,  
5.    0.308f, 0.609f, 0.082f, 0, 0,  
6.    0, 0, 0, 1, 0 
7.};  
8. 
9.Drawable myImage = res.getDrawable(R.drawable.h114);  
10.myImage.mutate();  
11.myImage.clearColorFilter();  
12.myImage.setColorFilter(new ColorMatrixColorFilter(BT_SELECTED));
原创粉丝点击