JavaFx图像适合Pane bad Quality

时间:2017-03-22 19:29:46

标签: java image javafx imageview pane

我正在尝试创建一个GridPane包含相同高度和宽度的图像。我已将每个ImageView放入Pane,因为没有Pane ImageView元素似乎无法正确缩放。它适用于Pane,但ImageView的质量会降低。

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.widthProperty());

    this.getChildren().add(image);
}

这就是守则。

原始图片:

enter image description here

插入Pane时:

enter image description here

我也使用过其他图片。

在您看来,它可能看起来不那么糟糕,但如果我仅使用ImageView并设置Width(不是fitWidth),它看起来会更好。

0 个答案:

没有答案