-
Bug
-
Resolution: Fixed
-
P3
-
fx2.0
-
MacOS 10.6.7, 64 bit JDK
Win7 x64, JDK6 x64
The test below displays a JPEG photo (attached as cliff.jpeg) inside an ImageView. On Mac 10.6 colors are distorted, see screenshot.
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.stage.Stage;
public class ImageTest extends Application {
public static void main(String[] args) {
Application.launch(ImageTest.class, args);
}
@Override public void start(Stage stage) {
Image img = new Image("http://forum.awd.ru/gallery/image.php?album_id=6265&image_id=141348");
ImageView view = new ImageView(img);
Scene sc = new Scene(new Group(view));
stage.setScene(sc);
stage.sizeToScene();
stage.setVisible(true);
}
}
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.stage.Stage;
public class ImageTest extends Application {
public static void main(String[] args) {
Application.launch(ImageTest.class, args);
}
@Override public void start(Stage stage) {
Image img = new Image("http://forum.awd.ru/gallery/image.php?album_id=6265&image_id=141348");
ImageView view = new ImageView(img);
Scene sc = new Scene(new Group(view));
stage.setScene(sc);
stage.sizeToScene();
stage.setVisible(true);
}
}
- blocks
-
JDK-8093872 WebView renders jpg incorrectly
-
- Closed
-
- duplicates
-
JDK-8117438 Google doodle looks wrong in WebNode
-
- Closed
-
-
JDK-8119048 Wrong colors in JPEG files
-
- Closed
-
-
JDK-8124661 Red JPEGs on WebView
-
- Closed
-
-
JDK-8128877 WebView shows incorrectly image background on google.co.uk
-
- Closed
-