摘要:
图片去色,返回黑白的图片,具体的方法就是为bitmap添加colorFilter public static Bitmap getGreyImage(Bitmap old) { int width, height; height = old.getHeight(); width = old.getWidth(); Bitmap new= Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565); ... 阅读全文