JavaFX - 图片输入特效



JavaFX 中的图片输入特效只是将图片嵌入到 JavaFX 屏幕中。就像颜色输入特效一样,它用于将指定的彩色矩形区域作为输入传递给另一个特效。图片输入特效用于将指定的图片作为输入传递给另一个特效。

应用此特效后,指定的图片不会被修改。此特效可应用于任何节点。

名为 `ImageInput` 的类(位于 `javafx.scene.effect` 包中)表示图片输入特效,此类包含三个属性,它们是:

  • x - 此属性为 Double 类型;它表示源图片位置的 x 坐标。

  • y - 此属性为 Double 类型;它表示源图片位置的 y 坐标。

  • source - 此属性为 Image 类型;它表示用作此特效源的图片。(作为输入传递)

示例

以下程序是一个演示图片输入特效的示例。在这里,我们在位置 150, 100 创建一个图片输入,并使用以下图片(Tutorialspoint 徽标)作为此特效的源。

Image Input Effect

我们创建一个矩形并将其应用于此特效。将此代码保存在名为 `ImageInputEffectExample.java` 的文件中。

import javafx.application.Application; 
import javafx.scene.Group; 
import javafx.scene.Scene; 
import javafx.scene.effect.ImageInput; 
import javafx.scene.image.Image; 
import javafx.scene.shape.Rectangle; 
import javafx.stage.Stage; 
         
public class ImageInputEffectExample extends Application { 
   @Override  
   public void start(Stage stage) {       
      //Creating an image 
      Image image = new Image("https://tutorialspoint.com/green/images/logo.png"); 
             
      //Instantiating the Rectangle class 
      Rectangle rectangle = new Rectangle(); 
     
      //Instantiating the ImageInput class 
      ImageInput imageInput = new ImageInput(); 
      
      //Setting the position of the image
      imageInput.setX(150); 
      imageInput.setY(100);       
      
      //Setting source for image input  
      imageInput.setSource(image); 
       
      //Applying image input effect to the rectangle node 
      rectangle.setEffect(imageInput);    
         
      //Creating a Group object  
      Group root = new Group(rectangle);   
               
      //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 ImageInputEffectExample.java 
java --module-path %PATH_TO_FX% --add-modules javafx.controls ImageInputEffectExample  

输出

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

Image Input Effect Example
广告