JavaFX - 辉光效果



就像光晕效果一样,辉光效果也会使给定的输入图像发光。此效果使输入像素变得更亮。

名为 Glowjavafx.scene.effect 包中的类表示辉光效果。此类包含两个属性,即:

  • input - 此属性的类型为 Effect,它表示辉光效果的输入。

  • level - 此属性的类型为 double;它表示辉光的强度。级别值的范围为 0.0 到 1.0。

示例

以下程序是一个演示 JavaFX 辉光效果的示例。在这里,我们使用 ImageImageView 类将以下图像(Tutorialspoint 徽标)嵌入 JavaFX 场景中。这将在位置 100、70 处完成,并且分别具有适合高度和适合宽度 200 和 400。

Glow Effect

对于此图像,我们应用辉光效果,级别值为 0.9。将此代码保存在名为 GlowEffectExample.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("https://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); 
   } 
}      

使用以下命令从命令提示符编译并执行保存的 java 文件。

javac --module-path %PATH_TO_FX% --add-modules javafx.controls GlowEffectExample.java 
java --module-path %PATH_TO_FX% --add-modules javafx.controls GlowEffectExample

输出

执行后,上述程序会生成一个如下所示的 JavaFX 窗口。

Glow Effect Example
广告