當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。