Efeitos JavaFX - Box Blur

Em geral, Desfocar significa tornar-se confuso, ao aplicar o efeito de desfoque a um nó ele se torna confuso. Box Blur é um tipo de efeito de desfoque fornecido pelo JavaFX. Neste efeito, para aplicar desfoque ao nó, um filtro de caixa simples é usado.

A classe chamada BoxBlur do pacote javafx.scene.effect representa o efeito BoxBlur, esta classe contém quatro propriedades, que são -

  • height - Esta propriedade é do tipo duplo que representa o tamanho vertical do efeito.

  • width - Esta propriedade é do tipo duplo que representa o tamanho horizontal do efeito.

  • input - Esta propriedade é do tipo efeito e representa uma entrada para o efeito BoxBlur.

  • iterations- Esta propriedade é do tipo inteiro representando o número de iterações do efeito, que devem ser aplicadas no nó. Isso é feito para melhorar sua qualidade ou suavidade.

Exemplo

A seguir está um exemplo que demonstra o efeito de desfoque de caixa. Aqui, estamos desenhando o texto “Bem-vindo ao Tutorialspoint” preenchido com a cor DARKSEAGREEN e aplicando o efeito Box Blur a ele.

Salve este código em um arquivo com o nome BoxBlurEffectExample.java.

import javafx.application.Application; 
import javafx.scene.Group; 
import javafx.scene.Scene; 
import javafx.scene.effect.BoxBlur; 
import javafx.scene.paint.Color; 
import javafx.stage.Stage; 
import javafx.scene.text.Font; 
import javafx.scene.text.FontWeight; 
import javafx.scene.text.Text; 
         
public class BoxBlurEffectExample extends Application { 
   @Override 
   public void start(Stage stage) {       
      //Creating a Text object 
      Text text = new Text(); 
      
      //Setting font to the text 
      text.setFont(Font.font(null, FontWeight.BOLD, 40)); 
      
      //setting the position of the text 
      text.setX(60); 
      text.setY(150);         
      
      //Setting the text to be added. 
      text.setText("Welcome to Tutorialspoint");       
      
      //Setting the color of the text 
      text.setFill(Color.DARKSEAGREEN);
      
      //Instantiating the BoxBlur class 
      BoxBlur boxblur = new BoxBlur();      
      
      //Setting the width of the box filter 
      boxblur.setWidth(8.0f);  
      
      //Setting the height of the box filter 
      boxblur.setHeight(3.0f); 
      
      //Setting the no of iterations  
      boxblur.setIterations(3);       
               
      //Applying BoxBlur effect to the text 
      text.setEffect(boxblur);          
         
      //Creating a Group object  
      Group root = new Group(text);   
               
      //Creating a scene object 
      Scene scene = new Scene(root, 600, 300);  
      
      //Setting title to the Stage 
      stage.setTitle("Sample Application"); 
         
      //Adding scene to the stage 
      stage.setScene(scene); 
         
      //Displaying the contents of the stage 
      stage.show();         
   } 
   public static void main(String args[]){ 
      launch(args); 
   } 
}

Compile e execute o arquivo java salvo no prompt de comando usando os comandos a seguir.

javac BoxBlurEffectExample.java 
java BoxBlurEffectExample

Ao ser executado, o programa acima gera uma janela JavaFX conforme mostrado abaixo.