我可以在画布上使用抗锯齿画画吗?

时间:2012-05-05 19:20:46

标签: android graphics android-canvas antialiasing

我可以在画布上使用抗锯齿进行绘制吗?

我需要我的圆圈和线条有光滑的边缘。

3 个答案:

答案 0 :(得分:82)

绘图操作需要Paint。在此Paint中,您设置了Paint.setFlags(Paint.ANTI_ALIAS_FLAG)

答案 1 :(得分:23)

检查一下。它相当使用光滑的边缘.. http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/FingerPaint.html

获得抗锯齿所需的绘制属性是:

     mPaint = new Paint();
     mPaint.setAntiAlias(true);

用于绘图用途:

     mPath = new Path();
     mPath.reset();
     mPath.moveTo(x, y);//can be used where to trigger the path

onDraw方法应该包含:

     canvas.drawPath(mPath, mPaint);

将mPath和mPaint声明为全局。

答案 2 :(得分:0)

您可以在 Paint 构造函数 ANTI_ALIAS_FLAG 中提供 Paint(int) . ANTI_ALIAS_FLAG 标志在绘图时启用抗锯齿。启用此标志将导致所有支持抗锯齿的绘制操作使用它。

或者您可以稍后使用setFlags(int)方法设置此标志

在 Kotlin 中的示例实现:

 //Paint
private var indicatorPaint: Paint = Paint(Paint.ANTI_ALIAS_FLAG).apply {
    isAntiAlias = true
    color = fillColor
    strokeWidth = lineThickness.toFloat()
    style = Paint.Style.STROKE
}