在Android中将位图转换为棕褐色

前端之家收集整理的这篇文章主要介绍了在Android中将位图转换为棕褐色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法将Bitmap转换成棕褐色?
我知道转换为grayScale是在ColorMatrix中设置setSaturation.
但是如何呢?

解决方法

如果您有图像实例,则可以使用ColorMartix将其绘制在Sepia中.让我描述如何使用Drawable来做到这一点.
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二进制文件进行测试,无需编译.

原文链接:https://www.f2er.com/android/312130.html

猜你在找的Android相关文章