Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8115307

ImageView get blur when stage resize.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 7u40
    • javafx
    • None
    • windows 7 64 bit
      jdk 1.7.0 u 45

      I place ImageView inside BorderPane. When Stage is show a image was sharp. but then i resize stage a image was blur (some size blue,some size not blur)

      code is simple as below

      public class ImageBrowser extends Application {

          @Override
          public void start(Stage primaryStage) {
              StackPane root = new StackPane();
              BorderPane borderPane = new BorderPane();
              root.getChildren().add(borderPane);
              ImageView imageView = new ImageView(getClass().getResource("test.png").toExternalForm());
              imageView.setPreserveRatio(true);
              borderPane.setCenter(imageView);
              Scene scene = new Scene(root, 300, 250);

              primaryStage.setTitle("Hello World!");
              primaryStage.setScene(scene);
              primaryStage.show();
          }

          public static void main(String[] args) {
              launch(args);
          }
      }

            psafrata Pavel Ĺ afrata
            psuwanpecjfx Pramoth Suwanpech (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: