38

While testing the GUI of my JavaFX 8 application, I noticed that some labels are not displaying anti-aliased text. After some googling and struggling, I found out a very annoying thing that is happening. The anti-aliasing is being applied only on labels which font size is greater than 80px. Here is an example comparing JavaFX and Swing applications with AA applied:

enter image description here

Sample code: https://gist.github.com/anonymous/be60bb89181376ff12aa

Is there a way to force the AA in all font sizes? Does this happen to you too? I searched for a similar bug on JavaFX Jira, but nobody is complaining about that so far. Maybe I should open one for this?

Some info that may help:

java version "1.8.0"
Java(TM) SE Runtime Environment (build 1.8.0-b132)
Java HotSpot(TM) 64-Bit Server VM (build 25.0-b70, mixed mode)
Windows 8.1 64 bits [Version 6.3.9600]
Fappaz
  • 3,033
  • 3
  • 28
  • 39

2 Answers2

55

By default, JavaFX 8 uses modena.css to set the LCD anti aliasing, which doesn't seem to smooth out fonts in some cases. When the font size is larger than 80 px, the AA technique switches to grey scale AA (for performance reasons). So, to achieve smooth edges at any size, grey scale AA should be used instead.

This can be done either via JavaFX CSS:

.text{
    -fx-font-smoothing-type: gray;
}

Or system arguments:

-Dprism.lcdtext=false

Or setting system properties (before loading the FXML):

System.setProperty("prism.lcdtext", "false");

Thanks everyone who replied on Jira!

Fappaz
  • 3,033
  • 3
  • 28
  • 39
  • 2
    I think that the default text smoothing type is "gray" (see https://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html), but the Modena CSS set it to "lcd". – Paolo Fulgoni May 07 '15 at 08:25
  • 7
    Worth noting that if the UI is loaded from an FXML template, the `System.setProperty("prism.lcdtext", "false");` should be called _before_ loading it, otherwise it’ll make no effect. – Ivan Akulov Sep 17 '15 at 21:42
1

System.setProperty("prism.lcdtext", "false");

Must be called before loading FXML template

Adem Kouki
  • 17
  • 1
  • 3