JavaFX - 颜色输入效果



颜色输入效果与绘制矩形并用颜色填充它产生的输出相同。与其他效果不同,如果将此效果应用于任何节点,它只会显示一个矩形框(而不是节点)。此效果主要用作其他效果的输入。

例如,在应用混合效果时,它需要一个效果类型的对象作为输入。在那里我们可以将其作为输入传递。

名为ColorInputjavafx.scene.effect包中的类表示颜色输入效果。此类包含四个属性,即:

  • x - 此属性为双精度类型;它表示颜色输入位置的 x 坐标。

  • y - 此属性为双精度类型;它表示颜色输入位置的 y 坐标。

  • height - 此属性为双精度类型;它表示要填充颜色的区域的高度。

  • width - 此属性为双精度类型;它表示要填充颜色的区域的宽度。

  • paint - 此属性为 Paint 类型;它表示要填充输入区域的颜色。

示例

以下示例演示了颜色输入效果。在这里,我们创建了一个尺寸为 50、400(高度、宽度)的颜色输入,位于 50、140 位置,并用 CHOCOLATE 颜色填充它。

我们正在创建矩形并将此效果应用于它。将此代码保存在名为ColorInputEffectExample.java的文件中。

import javafx.application.Application; 
import javafx.scene.Group; 
import javafx.scene.Scene; 
import javafx.scene.effect.ColorInput; 
import javafx.scene.paint.Color; 
import javafx.scene.shape.Rectangle; 
import javafx.stage.Stage; 
         
public class ColorInputEffectExample extends Application { 
   @Override  
   public void start(Stage stage) {            
      //creating a rectangle 
      Rectangle rectangle = new Rectangle();
      
      //Instantiating the Colorinput class 
      ColorInput colorInput = new ColorInput();         
       
      //Setting the coordinates of the color input 
      colorInput.setX(50); 
      colorInput.setY(140); 
      
      //Setting the height of the region of the collor input 
      colorInput.setHeight(50); 
      
      //Setting the width of the region of the color input 
      colorInput.setWidth(400); 
      
      //Setting the color the color input 
      colorInput.setPaint(Color.CHOCOLATE);  
      
      //Applying coloradjust effect to the Rectangle 
      rectangle.setEffect(colorInput);    
         
      //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 ColorInputEffectExample.java 
java --module-path %PATH_TO_FX% --add-modules javafx.controls ColorInputEffectExample 

输出

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

Color Input Effect
广告