JavaFx Image fit to Pane bad Quality
问题 I'm trying to create a GridPane containing images of equal height and width. I've put each ImageView into a Pane because without the Pane the ImageView elements don't seem to scale correctly. It kinda works with the Pane , but the quality of the ImageView gets degraded. public class Cell extends Pane{ public Cell(FieldCell field){ this.field = field; image = new ImageView(new Image("path")); image.fitHeightProperty().bind(this.heightProperty()); image.fitWidthProperty().bind(this