图像显得偏红

时间:2015-12-26 15:41:47

标签: image javafx-8

我有类似的问题。我正在从一个文件中将一个人的照片加载到StackPane / ImageView中。此时图像看起来像原始图像。单击“保存”按钮后,图像将插入数据库BLOB字段中。在SQL中,当您查看此图像时,图像看起来完全正常。在“查看/修改”选项上,我检索Blob并将其转换为Image并将其加载到同一Imageview中。但现在它出现了偏红背景。

This is the correct image at the time of loading from file

But this is how it appears when I display it from Database

1 个答案:

答案 0 :(得分:0)

我在我的CSS文件中这样做了。它可以工作。

.scrollPane.disabled {
    -fx-opacity: 1.0;
    -fx-background-color: cornsilk;
}

.scrollPane {
    -fx-opacity: 1.0;
    -fx-background-color: cornsilk;
}

这是我的节点的顺序。

  1. 滚动窗格
  2. Stack Pane
  3. 图片视图
  4. 图像