Effetti JavaFX - Glow
Proprio come l'effetto Bloom, l'effetto Glow fa risplendere anche l'immagine di input fornita. Questo effetto rende i pixel dell'input molto più luminosi.
La classe denominata Glow del pacchetto javafx.scene.effectrappresenta l'effetto bagliore. Questa classe contiene due proprietà:
input - Questa proprietà è del tipo Effect e rappresenta un input per l'effetto bagliore.
level- Questa proprietà è del tipo double; rappresenta l'intensità del bagliore. L'intervallo del valore del livello è compreso tra 0,0 e 1,0.
Esempio
Il seguente programma è un esempio che dimostra l'effetto bagliore di JavaFX. Qui, stiamo incorporando la seguente immagine (Tutorialspoint Logo) nella scena JavaFX usandoImage e ImageViewclassi. Questo sarà fatto nella posizione 100, 70 e con altezza di adattamento e larghezza di adattamento 200 e 400 rispettivamente.
A questa immagine applichiamo l'effetto bagliore con il valore di livello 0.9. Salva questo codice in un file con il nomeGlowEffectExample.java.
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.effect.Glow;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.stage.Stage;
public class GlowEffectExample extends Application {
@Override
public void start(Stage stage) {
//Creating an image
Image image = new Image("http://www.tutorialspoint.com/green/images/logo.png");
//Setting the image view
ImageView imageView = new ImageView(image);
//setting the fit width of the image view
imageView.setFitWidth(200);
//Setting the preserve ratio of the image view
imageView.setPreserveRatio(true);
//Instantiating the Glow class
Glow glow = new Glow();
//setting level of the glow effect
glow.setLevel(0.9);
//Applying bloom effect to text
imageView.setEffect(glow);
//Creating a Group object
Group root = new Group(imageView);
//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);
}
}
Compilare ed eseguire il file java salvato dal prompt dei comandi utilizzando i seguenti comandi.
javac GlowEffectExample.java
java GlowEffectExample
All'esecuzione, il programma di cui sopra genera una finestra JavaFX come mostrato di seguito.