ImagePattern
是你在找什麼。
它填補與Image
一個Shape
,因此您的代碼可能看起來像這樣
cir2.setFill(new ImagePattern(Image));
測試代碼
public void start(Stage primaryStage) {
try {
BorderPane root = new BorderPane();
root.setPadding(new Insets(10));
Scene scene = new Scene(root,400,400);
Label l = new Label("SHAPE IMAGE OF MY SISTER");
l.setFont(Font.font(Font.getFontNames().get(23), FontWeight.EXTRA_BOLD, 14));
l.setAlignment(Pos.CENTER);
l.setPrefWidth(Double.MAX_VALUE);
root.setTop(l);
///////////////important code starts from here
Circle cir2 = new Circle(250,250,120);
cir2.setStroke(Color.SEAGREEN);
Image im = new Image("https://juicylinksmag.files.wordpress.com/2016/02/juliet-ibrahim.jpg",false);
cir2.setFill(new ImagePattern(im));
cir2.setEffect(new DropShadow(+25d, 0d, +2d, Color.DARKSEAGREEN));
//////////////important code ends here
root.setCenter(cir2);
primaryStage.setScene(scene);
primaryStage.show();
} catch(Exception e) {
e.printStackTrace();
}
}
一種更好的方式又是什麼?發佈[mcve]然後提問。 – MBec
如果我沒有提供有關我的問題的更多信息,我很抱歉。我得到的只是一個空白的圓圈 – ben
[將圖像放在圓圈視圖中]可能的重複(http://stackoverflow.com/questions/20708295/put-a-image-in-a-circle-view) –