作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在使用 canvas.clipPath 时遇到了麻烦,它显示锯齿,看起来不平滑,我知道如果我使用 Paint,我可以使用 mPaint.setFlags(Paint.ANTI_ALIAS_FLAG) ,这可以抗锯齿,但在我的代码,我不能使用油漆。
public static void drawCurrentPageArea(Canvas canvas, Bitmap bitmap) {
//cebakhja
canvas.save();
canvas.clipPath(getPath5(), Region.Op.XOR);
canvas.drawBitmap(bitmap, 0, 0, null);
canvas.restore();
}
public static Path getPath5()
{
Path mPath5 = new Path();
mPath5.moveTo(ptc.x, ptc.y);
mPath5.quadTo(pte.x, pte.y, ptb.x,ptb.y);
mPath5.lineTo(pta.x, pta.y);
mPath5.lineTo(ptk.x, ptk.y);
mPath5.quadTo(pth.x, pth.y, ptj.x,ptj.y);
mPath5.lineTo(ptf.x, ptf.y);
mPath5.close();
return mPath5;
}
你可以看到我使用 canvas.drawBitmap(bitmap, 0, 0, null);油漆是空的。如果我需要添加油漆,你能给我一些建议吗?图片是http://i.6.cn/cvbnm/36/5c/20/5d8d20e3bafe432d792793509f99131e.jpg
编辑:我设置了 null 的 paint,但没有效果
最佳答案
试试这个。
private Paint mBitmapPaint = new Paint() {
{
setAntiAlias(true);
setFilterBitmap(true);
}
};
public static void drawCurrentPageArea(Canvas canvas, Bitmap bitmap) {
// cebakhja
canvas.save();
canvas.clipPath(getPath5(), Region.Op.XOR);
canvas.drawBitmap(bitmap, 0, 0, mBitmapPaint);
canvas.restore();
}
关于android - 如何在 Canvas 和路径中抗锯齿,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5816068/
我是一名优秀的程序员,十分优秀!