我对java中的图形很陌生,我正在尝试创建一个剪辑到另一个形状底部的形状。这是我要实现的目标的示例:
形状底部的白线是圆形边缘内的那种剪裁。我现在这样做的方式是这样的:
g2.setColor(gray);
Shape shape = getShape(); //round rectangle
g2.fill(shape);
Rectangle rect = new Rectangle(shape.getBounds().x, shape.getBounds().y, width, height - 3);
Area area = new Area(shape);
area.subtract(new Area(rect));
g2.setColor(white);
g2.fill(area);
我仍在尝试使用剪辑方法,但似乎无法正确处理。这种当前方法是否可行(性能方面,因为组件经常重绘)还是有更有效的方法?