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


JavaFX 类 LinearGradient用法及代码示例


LinearGradient类是JavaFX的一部分。 LinearGradient类使用线性颜色渐变图案填充形状。用户可以指定多个LinearGradient图案,并且系统将在颜色之间提供插值。

该类的构造函数:

  1. LinearGradient(double sX, double sY, double eX, double eY, boolean prop, CycleMethod c, List s):创建一个新的Lineargradient对象。
  2. LinearGradient(double sX, double sY, double eX, double eY, boolean prop, CycleMethod c, Stop… s):创建一个新的LinearGradient对象。

常用方法:


方法 说明
equals(Object o) 返回LinearGradient对象是否相等。
getCycleMethod() 返回线性梯度对象的循环方法。
getEndX() 返回线性渐变终点的x坐标。
getEndY() 返回线性渐变终点的y坐标。
getStartX() 返回线性渐变起点的x坐标。
getStartY() 返回线性渐变起点的y坐标。
getStops() 返回线性梯度的终止点。
isOpaque() 返回线性渐变是否不透明。
isProportional() 返回线性渐变是否成比例。
valueOf(String v) 从字符串表示形式创建线性渐变值。

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

  1. Java程序,用于创建LinearGradient对象并向其添加停靠点并将其应用于圆:在此程序中,我们将创建一个Stop对象数组,其偏移值范围为0到1。创建一个带有指定Stop的LinearGradient对象。现在,创建一个具有指定x,y位置和半径的圆,并向其中添加线性渐变。然后创建一个VBox并设置其对齐方式。将圆添加到vbox,将vbox添加到场景,并将场景添加到舞台,然后调用show()函数以显示结果。
    // Java program to create a LinearGradient  
    // object and add stops to it and apply it 
    // to the circle 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.layout.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    import javafx.geometry.*; 
    import javafx.scene.layout.*; 
    import javafx.scene.shape.*; 
    import javafx.scene.paint.*; 
       
    public class Linear_Gradient_1 extends Application { 
       
    // launch the application 
    public void start(Stage stage) 
    { 
      
        try { 
      
            // set title for the stage 
            stage.setTitle("Linear Gradient"); 
      
            // create stops 
            Stop[] stop = {new Stop(0, Color.RED),  
                           new Stop(0.5, Color.GREEN),  
                           new Stop(1, Color.BLUE)}; 
      
            // create a Linear gradient object 
            LinearGradient linear_gradient = new LinearGradient(0, 0, 
                              1, 0, true, CycleMethod.NO_CYCLE, stop); 
      
            // create a circle 
            Circle circle = new Circle(100, 100, 70); 
      
            // set fill 
            circle.setFill(linear_gradient); 
      
            // create VBox 
            VBox vbox = new VBox(circle); 
      
            // ste Alignment 
            vbox.setAlignment(Pos.CENTER); 
      
            // create a scene 
            Scene scene = new Scene(vbox, 400, 300); 
      
            // set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        catch (Exception e) { 
      
            System.out.println(e.getMessage()); 
        } 
    } 
      
    // Main Method 
    public static void main(String args[]) 
    { 
      
        // launch the application 
        launch(args); 
    } 
    }

    输出:

  2. Java程序创建一个LinearGradient对象并向其添加停靠点,并将CycleMethod设置为反射并与false成比例设置并将其应用于圆:在此程序中,我们将创建一个Stop对象数组,其偏移值范围为0到1。然后创建一个带有指定Stop的LinearGradient对象。将CycleMethod设置为反映并与false成比例。创建一个具有指定x,y位置和半径的圆,并向其中添加线性渐变。然后创建一个VBox并设置其对齐方式。将圆添加到vbox,将vbox添加到场景,并将场景添加到舞台,然后调用show()函数以显示结果。
    // Java program to create a LinearGradient object  
    // and add stops to it and set the CycleMethod to 
    // reflect and set proportional to false and  
    // apply it to the circle 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.stage.Stage; 
    import javafx.scene.layout.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    import javafx.geometry.*; 
    import javafx.scene.layout.*; 
    import javafx.scene.shape.*; 
    import javafx.scene.paint.*; 
      
    public class Linear_Gradient_2 extends Application { 
      
        // launch the application 
        public void start(Stage stage) 
        { 
      
            try { 
      
                // set title for the stage 
                stage.setTitle("Linear Gradient"); 
      
                // create stops 
                Stop[] stop = {new Stop(0, Color.RED), new Stop(0.5,  
                             Color.GREEN), new Stop(1, Color.BLUE)}; 
      
                // create a Linear gradient object 
                LinearGradient linear_gradient = new LinearGradient(0, 0,  
                                35, 0, false, CycleMethod.REFLECT, stop); 
      
                // create a circle 
                Circle circle = new Circle(100, 100, 70); 
      
                // set fill 
                circle.setFill(linear_gradient); 
      
                // create VBox 
                VBox vbox = new VBox(circle); 
      
                // ste Alignment 
                vbox.setAlignment(Pos.CENTER); 
      
                // create a scene 
                Scene scene = new Scene(vbox, 400, 300); 
      
                // set the scene 
                stage.setScene(scene); 
      
                stage.show(); 
            } 
      
            catch (Exception e) { 
      
                System.out.println(e.getMessage()); 
            } 
        } 
      
        // Main Method 
        public static void main(String args[]) 
        { 
      
            // launch the application 
            launch(args); 
        } 
    }

    输出:

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

参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/LinearGradient.html



相关用法


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