标签: filter colormatrix drawbitmap
我想实现将Bitmap从颜色转换为灰色。
首先,我使用两个for-loop将每个像素设置为(R + G + B)/ 3,
将ColorMatrixColorFilter与ColorMatrix.setSaturation()一起使用后,
性能优于setpixel。
但是为什么setpixel方法比使用ColorMatrixColorFilter慢?感谢。