AWT BasicStroke 类

简介

BasicStroke 类声明默认 sRGB 颜色空间中的颜色或由 ColorSpace 标识的任意颜色空间中的颜色。

类声明

以下是 java.awt.BasicStroke 类的声明:

public class BasicStroke
    extends Object
        implements Stroke

字段

以下是 java.awt.geom.Arc2D 类的字段:

  • static int CAP_BUTT -- 结束未封闭的子路径和虚线段,不添加任何修饰。

  • static int CAP_ROUND -- 使用半径等于笔宽一半的圆形装饰结束未封闭的子路径和虚线段。

  • static int CAP_SQUARE -- 使用超出线段末端的方形投影结束未封闭的子路径和虚线段,投影距离等于线宽的一半。

  • static int JOIN_BEVEL -- 通过使用直线段连接宽轮廓的外角来连接路径段。

  • static int JOIN_MITER -- 通过延伸路径段的外边缘直到它们相接来连接路径段。

  • static int JOIN_ROUND -- 通过在半径为线的一半处对角进行圆化来连接路径段宽度。

类构造函数

S.N.构造函数 &描述
1

BasicStroke()

构造一个新的 BasicStroke,所有属性均使用默认值。

2

BasicStroke(float width)

构造一个具有指定线宽的实心 BasicStroke,并使用 cap 和 join 样式的默认值。

3

BasicStroke(float width, int cap, int join)

构造一个具有指定属性的实心 BasicStroke。

4

BasicStroke(float width, int cap, int join, float miterlimit)

使用指定的属性构造一个实心的 BasicStroke。

5

BasicStroke(float width, int cap, int join, float miterlimit, float[] dash, float dash_phase)

使用指定的属性构造一个新的 BasicStroke。

类方法

S.N.方法 &描述
1

Shape createStrokedShape(Shape s)

返回一个 Shape,其内部定义指定 Shape 的描边轮廓。

2

boolean equals(Object obj)

通过首先测试指定对象是否为 BasicStroke,然后将其宽度、连接、端点、斜接限制、虚线和虚线相位属性与此 BasicStroke 的属性进行比较,来测试指定对象是否等于此 BasicStroke。

3

float[] getDashArray()

返回表示虚线段长度的数组。

4

float getDashPhase()

返回当前虚线阶段。

5

int getEndCap()

返回端盖样式。

6

int getLineJoin()

返回线连接样式。

7

float getLineWidth()

返回线宽。

8

float getMiterLimit()

返回斜接连接的限制。

9

int hashCode()

返回此笔划的哈希码。

继承的方法

此类从以下类继承方法:

  • java.lang.Object

BasicStroke 示例

使用您选择的任何编辑器在 D:/ > AWT > com > tutorialspoint > gui > 中创建以下 Java 程序

AWTGraphicsDemo.java
package com.tutorialspoint.gui;

import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;

public class AWTGraphicsDemo extends Frame {
       
   public AWTGraphicsDemo(){
      super("Java AWT Examples");
      prepareGUI();
   }

   public static void main(String[] args){
      AWTGraphicsDemo  awtGraphicsDemo = new AWTGraphicsDemo();  
      awtGraphicsDemo.setVisible(true);
   }

   private void prepareGUI(){
      setSize(400,400);
      addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent windowEvent){
            System.exit(0);
         }        
      }); 
   }    

   @Override
   public void paint(Graphics g) {
      Graphics2D g2 = (Graphics2D)g;        
      g2.setStroke(new BasicStroke(3.0f));
      g2.setPaint(Color.blue);

      Rectangle2D shape = new Rectangle2D.Float();
      shape.setFrame(100, 150, 200,100);
      g2.draw(shape);

      Rectangle2D shape1 = new Rectangle2D.Float();
      shape1.setFrame(110, 160, 180,80);
      g2.setStroke(new BasicStroke(1.0f));
   
      g2.draw(shape1);
      Font plainFont = new Font("Serif", Font.PLAIN, 24);        
      g2.setFont(plainFont);
      g2.setColor(Color.DARK_GRAY);
      g2.drawString("TutorialsPoint", 130, 200);
   }
}

使用命令提示符编译程序。转到 D:/ > AWT 并键入以下命令。

D:\AWT>javac com	utorialspoint\gui\AwtGraphicsDemo.java

如果没有错误,则表示编译成功。使用以下命令运行程序。

D:\AWT>java com.tutorialspoint.gui.AwtGraphicsDemo

验证以下输出

AWT BasicStroke

awt_graphics.html