我正在尝试用.png图像填充圆,但是透明背景会更改圆的实际尺寸。如何使图像合适,而不必增加圆形的大小,然后不能具有精确的半径值,等等。
Circle c = new Circle();
c.setCenterX(x);
c.setCenterY(y);
c.setRadius(50.0D);
Image image=new Image("https://.../Image.png",false);
titan.setFill(new ImagePattern(image));
到目前为止,我没有使用任何FXML或CSS文件。我只是在使用setFill()