我正在学习Android并尝试在Canvas上绘制不同的形状。目前我被困在一个不同角度的椭圆形中:
我尝试使用path.addRoundRect()
方法(采用半径数组的方法),但无法弄清楚我应该通过哪些值来实现这种形状。我也尝试使用path.lineTo()
,但无法达到这样的结果(它有点类似,但仍然不是我需要的)。什么是一个很好的解决方案来实现这一目标?
编辑1 :我尝试过的是:
Path path= new Path();
path.moveTo(x - radius, y - radius/ 1.5f);
path.lineTo(x - radius/ 4, y - radius);
path.lineTo(x, y - radius);
path.lineTo(x + radius/ 2, y - radius);
path.lineTo(x + radius, y - radius/ 2);
path.lineTo(x, y + radius/ 2);
path.lineTo(x - radius/ 2, y + radius/ 1.5f);
path.lineTo(x - radius, y + radius/ 4);
path.lineTo(x - radius, y - radius/ 1.5f);
path.close();
Paint pathPaint = new Paint();
pathPaint.setColor(Color.BLACK);
pathPaint.setStrokeWidth(2.5f);
pathPaint.setDither(true);
pathPaint.setStyle(Style.STROKE);
pathPaint.setStrokeJoin(Join.ROUND);
pathPaint.setStrokeCap(Cap.ROUND);
pathPaint.setPathEffect(new CornerPathEffect(20));
pathPaint.setAntiAlias(true);
canvas.drawOval(new RectF(x - radius, y - radius+ 2, x + radius-2, y + radius- 2), pathPaint);
canvas.drawPath(path, pathPaint);
X和Y是显示器上的一些坐标,半径是圆的半径(我开始用圆绘制)。它等于14像素。
我也尝试过这种方式:
float[] radii = new float[] {
5,
5,
1,
1,
5,
1,
1,
1,
};
path.addRoundRect(new RectF(x - radius, y - radius, x + radius,
y + radius),
radii, Direction.CW);
canvas.drawPath(path, pathPaint);
答案 0 :(得分:0)
尝试使用Canvas.skew()函数。下面的URL有一个很好的例子。歪斜"倾斜"正在绘制的点。您将根据画布的当前中心获得不同的结果,因此需要translate()以获得所需的结果。