📜  JavaFX |布卢姆班

📅  最后修改于: 2022-05-13 01:54:28.428000             🧑  作者: Mango

JavaFX |布卢姆班

Bloom 类是 JavaFX 的一部分。 Bloom 是一种高级效果,可根据可配置的阈值使输入图像的较亮部分看起来发光。 Bloom 类继承Effect类。

类的构造函数:

  1. Bloom() :创建一个新的 Bloom Object 。
  2. Bloom(double t) :创建具有指定阈值的新 Bloom 效果。

常用方法:

MethodExplanation
getInput()Gets the value of the property input
getThreshold()Returns the value of threshold
setInput(Effect v)Sets the value of the property input
setThreshold(double v)Sets the threshold value of the effect

下面的程序说明了 Bloom 类的使用:

  1. 导入图像并为其添加光晕效果的Java程序:在该程序中,创建了一个FileInputStream ,并将图像作为文件的输入。名为image的图像是使用来自文件输入流的输入创建的。从图像中创建一个图像视图对象并将其添加到VBox中。然后将 VBox 添加到场景中,并将场景添加到舞台中。使用作为参数传递的指定级别创建 Bloom 效果,并使用setEffect()函数将效果设置为图像视图。
    // Java program to import an image
    // and add bloom effect to it
    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 bloom_1 extends Application {
      
        // launch the application
        public void start(Stage stage) throws Exception
        {
      
            // set title for the stage
            stage.setTitle("Bloom 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 bloom effect
            Bloom bloom = new Bloom(0.9);
      
            // set effect
            imageview.setEffect(bloom);
      
            // 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添加到场景中,并将场景添加到舞台中。使用作为参数传递的指定级别创建 Bloom 效果,并使用setEffect()函数将效果设置为图像视图。创建了一个名为 button 的 Button,用于增加图像的光晕。该按钮也被添加到VBox 。使用setThreshold()函数增加图像的绽放。与按钮相关的事件使用EventHandler处理。
    // Java program to import an image and
    // set bloom effect to it. The Threshold
    // value of the bloom effect can be 
    // controlled using the button
    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 bloom_2 extends Application {
      
        double level = 0.1;
      
        // launch the application
        public void start(Stage stage) throws Exception
        {
      
            // set title for the stage
            stage.setTitle("Bloom 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 bloom effect
            Bloom bloom = new Bloom(level);
      
            // create a button
            Button button = new Button("bloom");
      
            // action event
            EventHandler event = new EventHandler() {
      
                public void handle(ActionEvent e)
                {
      
                    // increase the level
                    level += 0.1;
                    if (level > 1)
                        level = 0.0;
      
                    // set Level for bloom
                    bloom.setThreshold(level);
                }
            };
      
            // set on action of button
            button.setOnAction(event);
      
            // set effect
            imageview.setEffect(bloom);
      
            // create a VBox
            VBox vbox = new VBox(imageview, button);
      
            // 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/Bloom.html