这可能是有史以来最容易的问题。我有一个像这样的JavaFx Canvas
设置:
Canvas canvas = new Canvas(300, 300);
GraphicsContext context = canvas.getGraphicsContext2D();
// make a big rectangle
context.setFill(Color.BLUE);
context.fillRect(50, 50, 200, 200);
// clip
context.beginPath();
context.rect(100, 100, 100, 100);
context.closePath();
context.clip();
// so now this draws a clipped smaller rectangle
context.setFill(Color.RED);
context.fillRect(50, 50, 200, 200);
context.removeClip(); // ???
// remove clip so this white rectangle is shown
context.setStroke(Color.WHITE);
context.setLineWidth(3);
context.strokeRect(75, 75, 150, 150);
我尝试GraphicsContext#restore()
(除了裁剪之外的所有内容都会恢复,并创建一个从0 | 0开始的矩形路径,并使用画布的大小并再次调用clip()
。
如何从GraphicsContext
删除剪辑?
答案 0 :(得分:3)
JavaFX中的剪辑行为很难说。 "删除你说的剪辑?"怎么样。
public void start(Stage primaryStage) throws Exception {
Pane root = new Pane();
Canvas canvas = new Canvas();
canvas.setHeight(400);
canvas.setWidth(400);
GraphicsContext graphics = canvas.getGraphicsContext2D();
//graphics.save();
graphics.beginPath();
graphics.rect(0,0,200,200);
graphics.clip();
graphics.setFill(Color.RED);
graphics.fillOval(100, 100, 200, 200);
//graphics.restore();
graphics.beginPath();
graphics.rect(200,200,200,200);
graphics.clip();
graphics.setFill(Color.BLUE);
graphics.fillOval(100, 100, 200, 200);
root.getChildren().add(canvas);
Scene scene = new Scene(root, 400, 400);
primaryStage.setScene(scene);
primaryStage.show();
}
当我在计算机上执行此操作时,我只得到一个蓝色圆圈。没有剪辑。有人可能会期望一个圆圈的红色四分之一和一个圆圈的蓝色四分之一。不。取消注释保存和恢复呼叫,它的行为符合预期。