矩形椭圆

JavaFX Shape类定义了常见的形状,例如线,矩形,圆,Arc,CubicCurve,Ellipse和QuadCurve。
在场景图上绘制矩形需要宽度,高度和左上角的(x,y)位置。
要在JavaFX中绘制一个矩形,可以使用javafx.scene.shape.Rectangle类。

  1. import javafx.application.Application;
  2. import javafx.scene.Group;
  3. import javafx.scene.Scene;
  4. import javafx.scene.paint.Color;
  5. import javafx.scene.shape.Rectangle;
  6. import javafx.stage.Stage;
  7. public class Main extends Application {
  8. public static void main(String[] args) {
  9. Application.launch(args);
  10. }
  11. @Override
  12. public void start(Stage primaryStage) {
  13. primaryStage.setTitle("矩形示例");
  14. Group root = new Group();
  15. Scene scene = new Scene(root, 300, 250, Color.WHITE);
  16. Rectangle r = new Rectangle();
  17. //r.setFill(Color.RED);
  18. r.setX(50);
  19. r.setY(50);
  20. r.setWidth(200);
  21. r.setHeight(100);
  22. root.getChildren().add(r);
  23. primaryStage.setScene(scene);
  24. primaryStage.show();
  25. }
  26. }

image.png

圆角矩形

Rectangle类实现了弧宽和弧高。可以使用这些功能来绘制圆角矩形。

  1. import javafx.application.Application;
  2. import javafx.scene.Group;
  3. import javafx.scene.Scene;
  4. import javafx.scene.paint.Color;
  5. import javafx.scene.shape.Rectangle;
  6. import javafx.stage.Stage;
  7. public class Main extends Application {
  8. public static void main(String[] args) {
  9. Application.launch(args);
  10. }
  11. @Override
  12. public void start(Stage stage) throws Exception {
  13. stage.setTitle("圆角矩形示例");
  14. Group group = new Group();
  15. //x - 矩形的水平位置
  16. //y - 矩形的垂直位置
  17. //width - 矩形的宽度
  18. //height - 矩形的高度
  19. Rectangle rect = new Rectangle(20, 20, 200, 200);
  20. rect.setArcHeight(15);
  21. rect.setArcWidth(15);
  22. rect.setStroke(Color.BLACK);
  23. group.getChildren().add(rect);
  24. Scene scene = new Scene(group, 300, 300);
  25. stage.setScene(scene);
  26. stage.show();
  27. }
  28. }

image.png

椭圆示例

  1. import javafx.application.Application;
  2. import javafx.scene.Group;
  3. import javafx.scene.Scene;
  4. import javafx.scene.effect.DropShadow;
  5. import javafx.scene.paint.Color;
  6. import javafx.scene.shape.Ellipse;
  7. import javafx.stage.Stage;
  8. public class Main extends Application {
  9. public static void main(String[] args) {
  10. Application.launch(args);
  11. }
  12. @Override
  13. public void start(Stage primaryStage) {
  14. primaryStage.setTitle("椭圆示例");
  15. Group root = new Group();
  16. Scene scene = new Scene(root, 300, 250, Color.WHITE);
  17. Group g = new Group();
  18. DropShadow ds = new DropShadow();
  19. ds.setOffsetY(3.0);
  20. ds.setColor(Color.color(0.4, 0.4, 0.4));
  21. Ellipse ellipse = new Ellipse();
  22. ellipse.setCenterX(50.0f);
  23. ellipse.setCenterY(50.0f);
  24. ellipse.setRadiusX(50.0f);
  25. ellipse.setRadiusY(25.0f);
  26. ellipse.setEffect(ds);
  27. g.getChildren().add(ellipse);
  28. root.getChildren().add(g);
  29. primaryStage.setScene(scene);
  30. primaryStage.show();
  31. }
  32. }

image.png