Class Glow

java.lang.Object
javafx.scene.effect.Effect
javafx.scene.effect.Glow

public class Glow extends Effect
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

Since:
JavaFX 2.0