本文主要是介绍图片灰化处理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在Android中可以通过ColorMatrix类实现图像处理软件中的滤镜效果,通过ColorMatrix类可以对位图中的每个像素进行变换处理,达到特殊的滤镜效果,下面通过一个例子来介绍如何通过ColorMatrix对图像进行灰化处理,Java代码如下:
// 图片灰化处理public Bitmap getGrayBitmap() {Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.android);Bitmap mGrayBitmap =Bitmap.createBitmap(mBitmap.getWidth(), mBitmap.getHeight(), Config.ARGB_8888);Canvas mCanvas = new Canvas(mGrayBitmap);Paint mPaint = new Paint();// 创建颜色变换矩阵ColorMatrix mColorMatrix = new ColorMatrix();// 设置灰度影响范围mColorMatrix.setSaturation(0);// 创建颜色过滤矩阵ColorMatrixColorFilter mColorFilter = new ColorMatrixColorFilter(mColorMatrix);// 设置画笔的颜色过滤矩阵mPaint.setColorFilter(mColorFilter);// 使用处理后的画笔绘制图像mCanvas.drawBitmap(mBitmap, 0, 0, mPaint);return mGrayBitmap;}
这篇关于图片灰化处理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!