public class Glow
  Comment     Returned-by     Constructor-argument     Method-argument     Field-type     Type-bound     Links  

A high-level effect that makes the input image appear to glow, based on a configurable threshold.

Example:


 Image image = new Image("boat.jpg");
 ImageView imageView = new ImageView(image);
 imageView.setFitWidth(200);
 imageView.setPreserveRatio(true);

 imageView.setEffect(new Glow(0.8));
 

The code above applied on this image:

A photo

produces the following:

The visual effect of Glow on photo

extends Effect

Since:  JavaFX 2.0