0
我用ImageView沒有什麼問題來設置圖像沒有拉伸和居中位置。例如,我有ImageView的邊界100像素×100像素,我有大約50個不同尺寸的圖像,但不大於100x100。當我在ImageView上切換它們時,小部分總是被拉伸。當我使用這樣的東西:JavaFx ImageView設置中心圖像
Image image = new Image(ImagePanel);
this.ImageViewItem.setImage(image);
Double h = image.getHeight();
Double w = image.getWidth();
ImageViewItem.setFitWidth(w);
ImageViewItem.setFitHeight(h);
他們是正確的大小,但在左上角。