JDK-8127671 : LCD Text, does not support non-opaque fill Color
  • Type: Bug
  • Component: javafx
  • Sub-Component: graphics
  • Affected Version: fx2.1
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2011-12-16
  • Updated: 2015-06-17
  • Resolved: 2011-12-22
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
fx2.1Fixed
Related Reports
Blocks :  
Description
Text with a non-opaque fill color will be rendered in gray scale.
        Text text = new Text(...);
        text.setFill(new Color(0.0, 0.0, 1.0, 0.5)); // alpha = 0.5
Will be render in gray scale regardless of font or if LCD is enabled.
Because current lcd shader does not handle alpha
Comments
Fixed as of rt-closed changeset: 15168:1616ae4b0207 2.1-graphics-scrum Build #229
22-12-2011