5

我正在渐变背景上加载和显示透明 PNG,结果如下:

在此处输入图像描述

如果我在 Paint.NET 中打开相同的文件,添加如下所示的背景:

在此处输入图像描述

不知何故,JavaFX 使图像松散清晰,我担心这可能是我的应用程序中所有图像的问题,而它只是在这种特殊情况下最明显。

以下是显示我如何加载此特定图像的提取代码:

ImageView imgDownload = new ImageView(this.getClass().getResource("/img/docstore/document_downloaded_btn.png").toExternalForm());
imgDownload.setFitWidth(59);
imgDownload.setFitHeight(32);
GridPane.setHalignment(imgDownload, HPos.CENTER);
grid_item.add(imgDownload, 3, 0);

作为参考,这里是原始图像的链接

我正在寻找一个答案,强调发生这种情况的可能原因

4

1 回答 1

10

更新

Java 8 中的 JavaFX 图像现在在所有情况下都能清晰地呈现。

问题中描述的原始问题已得到解决。

Dreen 提交的有关此行为的错误RT-28765 Incorrect subpixel placement for an Image已作为RT-19282 [StackPane] 不需要的 ImageView 模糊的副本而关闭 。RT-19282 在 Java 8 中已修复。

我在 Windows 7 上测试了Java 8 build 108。这个答案中的示例应用程序现在可以正确显示(没有模糊图像有时会在 x 或 y 方向偏移半个像素)。


这是一个很好的问题和非常好奇的行为。

我整理了一个示例程序,它提供了可能的解释和解决方法。

运行该程序并稍微拖动边框以调整其大小后,该程序的输出如下所示。左边的模糊云是ImageView放置在GridPane. 右边的清脆云是ImageView我的解决方法修复类(CenteredRegion)中的一个包裹,放置在同一个GridPane.

模糊而清脆的云

显示上图时,程序的输出为:

Layout SnapToPixel: true
...
fuzzy: New Bounds: BoundingBox [minX:14.5, minY:12.5, minZ:0.0, width:59.0, height:32.0, depth:0.0, maxX:73.5, maxY:44.5, maxZ:0.0]
fuzzy: xDisplacement: 0.5, yDisplacement: 0.5
crisp: New Bounds: BoundingBox [minX:84.0, minY:13.0, minZ:0.0, width:59.0, height:32.0, depth:0.0, maxX:143.0, maxY:45.0, maxZ:0.0]
crisp: xDisplacement: 0.0, yDisplacement: 0.0

如您所见,模糊图像没有进行像素对齐,并且在 x 和 y 方向偏移了半个像素,导致它看起来很模糊。尽管网格区域snapToPixel设置为true.

由于包含布局的舞台是动态调整大小的,因此模糊图像将在像素对齐和非像素对齐之间交替(取决于场景宽度和高度的奇数或均匀性)。当您调整舞台边界的大小时,这会产生令人讨厌的闪烁效果,因为模糊图像在模糊和清晰之间不断交替。

当在父容器上设置为 true时,模糊图像的行为似乎是一个错误snapToPixel,所以我建议针对 JavaFX 运行时项目提交一个错误并在错误中链接回这个堆栈溢出问题并放置一个链接到评论中创建的错误。

清晰版本保持清晰,因为它位于确保像素对齐的自定义区域实现中。

测试系统为win7 + jdk8b77 + ATI HD4600显卡。

import javafx.application.Application;
import static javafx.application.Application.launch;
import javafx.beans.value.*;
import javafx.geometry.*;
import javafx.scene.Node;
import javafx.scene.Scene;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import static javafx.scene.layout.Region.USE_PREF_SIZE;
import javafx.stage.Stage;

public class TransparentPngSample extends Application {  
  public static final String IMAGE_LOC = "http://i.imgur.com/byY8whh.png";

  @Override public void start(Stage stage) {
    Pane layout = createSceneContent();
    stage.setScene(new Scene(layout));
    stage.show();

    System.out.println("Layout SnapToPixel: " + layout.snapToPixelProperty().get());
  }

  private Pane createSceneContent() {
    final Image cloudImage = new Image(IMAGE_LOC);
    final ImageView fuzzyCloud = new ImageView(cloudImage);
    final CenteredRegion crispCloud = new CenteredRegion(new ImageView(cloudImage));

    GridPane layout = new GridPane();
    layout.setHgap(10);
    layout.setVgap(10);
    layout.addRow(0, fuzzyCloud, crispCloud);
    layout.setAlignment(Pos.CENTER);
    layout.setStyle("-fx-padding: 10px; -fx-background-color: slategrey;");

    fuzzyCloud.boundsInParentProperty().addListener(new BoundsReporter("fuzzy"));
    crispCloud.boundsInParentProperty().addListener(new BoundsReporter("crisp"));

    return layout;
  }

  class CenteredRegion extends Region {
    private Node content;

    CenteredRegion(Node content) {
      this.content = content;
      getChildren().add(content);
    }

    @Override protected void layoutChildren() {
      content.relocate(
        Math.round(getWidth()  / 2 - content.prefWidth(USE_PREF_SIZE)  / 2), 
        Math.round(getHeight() / 2 - content.prefHeight(USE_PREF_SIZE) / 2)
      );

      System.out.println("crisp content relocated to: " +
        getLayoutX() + "," + getLayoutY()
      );
    }

    public Node getContent() {
      return content;
    }
  }

  class BoundsReporter implements ChangeListener<Bounds> {
    final String logPrefix;

    BoundsReporter(String logPrefix) {
      this.logPrefix = logPrefix;
    }

    @Override public void changed(ObservableValue<? extends Bounds> ov, Bounds oldBounds, Bounds newBounds) {
      System.out.println(logPrefix + ": " + 
        "New Bounds: " + newBounds
      );
      double xDisplacement = newBounds.getMinX() - Math.floor(newBounds.getMinX());
      double yDisplacement = newBounds.getMinY() - Math.floor(newBounds.getMinY());
      System.out.println(logPrefix + ": " + 
        "xDisplacement: " + xDisplacement + ", " + 
        "yDisplacement: " + yDisplacement
      );
    }
  }          

  public static void main(String[] args) { launch(args); }
}
于 2013-03-01T20:48:37.073 回答