我想通过矩阵在画布上绘制缩放位图,但是一些缩放的像素点有锯齿,我尝试使用paint.setAntiAlias(true)
,但它不起作用,如何解决它,感谢您的帮助。
这是我的代码
mMatrix.setScale(mScale, mScale);
mMatrix.postTranslate(mPaintStartPoint.x, mPaintStartPoint.y);
canvas.drawBitmap(mCacheMap, mMatrix, mBgPaint);
原始位图:enter image description here
画布中的比例位图:enter image description here