public static voID setSepiacolorFilter(Drawable drawable) { if (drawable == null) return; final colorMatrix matrixA = new colorMatrix(); // making image B&W matrixA.setSaturation(0); final colorMatrix matrixB = new colorMatrix(); // applying scales for RGB color values matrixB.setScale(1f,.95f,.82f,1.0f); matrixA.setConcat(matrixB,matrixA); final colorMatrixcolorFilter filter = new colorMatrixcolorFilter(matrixA); drawable.setcolorFilter(filter);}
示例项目从Bitbucket移动到GitHub.请检查Release section下载APK二进制文件进行测试,无需编译.
总结以上是内存溢出为你收集整理的在Android中将位图转换为棕褐色全部内容,希望文章能够帮你解决在Android中将位图转换为棕褐色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)