gpt4 book ai didi

android - 如何在 Canvas 和路径中抗锯齿

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:00:50 26 4
gpt4 key购买 nike

我在使用 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com