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

A blur effect using a Gaussian convolution kernel, with a configurable radius.

Example:


 Text text = new Text();
 text.setText("Blurry Text!");
 text.setFill(Color.web("0x3b596d"));
 text.setFont(Font.font(null, FontWeight.BOLD, 50));
 text.setX(10);
 text.setY(50);

 text.setEffect(new GaussianBlur());
 

The code above produces the following:

The visual effect of GaussianBlur
 on text

extends Effect

Since:  JavaFX 2.0