如何缩放.PNG图像以完全填充一个圆?

时间:2019-04-17 08:03:21

标签: image javafx shapes fill

我正在尝试用.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()

0 个答案:

没有答案