当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaFX 类 Reflection用法及代码示例


反射类是JavaFX的一部分。 Reflection类用于在输入值的实际图像下方添加反射图像。反射图像将不响应鼠标事件或输入中的包含方法。

该类的构造函数:

  1. Reflection():创建一个新的反射对象。
  2. Reflection(double topOffset, double fraction, double topOpacity, double bottomOpacity):使用指定的topOffset,fraction,topOpacity和bottomOpacity创建一个新的Reflection对象。

常用方法:


方法 说明
getBottomOpacity() 返回bottomOpacity的值
getTopOpacity() 返回topOpacity的值
getFraction() 返回反射图像与真实图像的分数
getTopOffset() 返回顶部偏移量的值
getInput() 返回属性输入的值
setBottomOpacity(double v) 设置bottomOpacity的值
setTopOpacity(double v) 设置topOpacity的值
setFraction(double v) 设置反射图像占真实图像的比例
setTopOffset(double v) 设置顶部偏移的值
setInput(Effect v) 设置属性输入的值

以下示例程序旨在说明Reflection类的用法:

  1. Java程序,使用反射类将反射添加到图像:在此程序中,将创建FileInputStream并将图像作为文件的输入。使用文件输入流中的输入创建名为image的Image。从图像创建图像视图对象,并将其添加到VBox。然后将VBox添加到场景,并将场景添加到舞台。创建反射效果,并使用setEffect()函数将其设置为图像视图。
    // Java program to add a reflection to  
    // the image using the reflection class 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.image.*; 
    import javafx.scene.effect.*; 
    import java.io.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
    import javafx.scene.Group; 
      
    public class reflection_1 extends Application { 
      
        // launch the application 
        public void start(Stage stage) throws Exception 
        { 
      
            // set title for the stage 
            stage.setTitle("reflection example"); 
      
            // create a input stream 
            FileInputStream input = new FileInputStream("D:\\GFG.png"); 
      
            // create a image 
            Image image = new Image(input); 
      
            // create a image View 
            ImageView imageview = new ImageView(image); 
      
            // create a reflection effect 
            Reflection reflection = new Reflection(); 
      
            // set effect 
            imageview.setEffect(reflection); 
      
            // create a VBox 
            VBox vbox = new VBox(imageview); 
      
            // create a scene 
            Scene scene = new Scene(vbox, 200, 200); 
      
            // set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
            // launch the application 
            launch(args); 
        } 
    }

    输出:

  2. Java程序使用反射类向图像添加反射并设置顶部偏移,顶部不透明度,底部不透明度和分数图像将作为反射出现:在此程序中,将创建FileInputStream并将图像作为文件的输入。使用来自文件输入流的输入来创建名为image的图像。从图像创建图像视图对象,并将其添加到VBox。然后将VBox添加到场景,并将场景添加到舞台。创建反射效果,并使用setEffect()函数将其设置为图像视图。底部不透明度,顶部不透明度,顶部偏移和分数分别使用setBottomOpacity(),setTopOpacity(),setFraction()和setTopOffset()函数进行设置。
    // Java program to add a reflection to the image 
    // using the reflection class and set the top  
    // offset, top opacity bottom opacity and fraction 
    // of image which will appear as reflection 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.image.*; 
    import javafx.scene.effect.*; 
    import java.io.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
    import javafx.scene.Group; 
      
    public class reflection_2 extends Application { 
      
        // launch the application 
        public void start(Stage stage) throws Exception 
        { 
      
            // set title for the stage 
            stage.setTitle("reflection example"); 
      
            // create a input stream 
            FileInputStream input = new FileInputStream("D:\\GFG.png"); 
      
            // create a image 
            Image image = new Image(input); 
      
            // create a image View 
            ImageView imageview = new ImageView(image); 
      
            // create a reflection effect 
            Reflection reflection = new Reflection(); 
      
            // set fraction 
            reflection.setFraction(0.6); 
      
            // set top Opacity 
            reflection.setTopOpacity(0.3); 
      
            // set bottom Opacity 
            reflection.setBottomOpacity(0.1); 
      
            // set top offset 
            reflection.setTopOffset(0.5); 
      
            // set effect 
            imageview.setEffect(reflection); 
      
            // create a VBox 
            VBox vbox = new VBox(imageview); 
      
            // create a scene 
            Scene scene = new Scene(vbox, 200, 200); 
      
            // set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
      
            // launch the application 
            launch(args); 
        } 
    }

    输出:

注意:以上程序可能无法在在线IDE中运行。请使用离线编译器。

参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Reflection.html



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 JavaFX | Reflection Class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。