线型 : 线 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 线屏幕截图 
线型
线型
 
/*
 * Copyright (c) 2000 David Flanagan.  All rights reserved.
 * This code is from the book Java Examples in a Nutshell, 2nd Edition.
 * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
 * You may study, use, and modify it for any non-commercial purpose.
 * You may distribute it non-commercially as long as you retain this notice.
 * For a commercial use license, or to purchase the book (recommended),
 * visit http://www.davidflanagan.com/javaexamples2.
 */
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Stroke;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.GeneralPath;

import javax.swing.JFrame;
import javax.swing.JPanel;

/** A demonstration of Java2D line styles */
public class LineStyles extends JPanel{
  public String getName() {
    return "LineStyles";
  }

  public int getWidth() {
    return 450;
  }

  public int getHeight() {
    return 180;
  }

  int[] xpoints = new int[] { 050100 }// X coordinates of our shape

  int[] ypoints = new int[] { 75075 }// Y coordinates of our shape

  // Here are three different line styles we will demonstrate
  // They are thick lines with different cap and join styles
  Stroke[] linestyles = new Stroke[] {
      new BasicStroke(25.0f, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL),
      new BasicStroke(25.0f, BasicStroke.CAP_SQUARE,
          BasicStroke.JOIN_MITER),
      new BasicStroke(25.0f, BasicStroke.CAP_ROUND,
          BasicStroke.JOIN_ROUND)};

  // Another line style: a 2 pixel-wide dot-dashed line
  Stroke thindashed = new BasicStroke(2.0f// line width
      /* cap style */BasicStroke.CAP_BUTT,
      /* join style, miter limit */BasicStroke.JOIN_BEVEL, 1.0f,
      /* the dash pattern */new float[] { 8.0f3.0f2.0f3.0f },
      /* the dash phase */0.0f)/* on 8, off 3, on 2, off 3 */

  // Labels to appear in the diagram, and the font to use to display them.
  Font font = new Font("Helvetica", Font.BOLD, 12);

  String[] capNames = new String[] { "CAP_BUTT""CAP_SQUARE""CAP_ROUND" };

  String[] joinNames = new String[] { "JOIN_BEVEL""JOIN_MITER",
      "JOIN_ROUND" };

  /** This method draws the example figure */
  public void paint(Graphics g1) {
    Graphics2D g = (Graphics2Dg1;
    // Use anti-aliasing to avoid "jaggies" in the lines
    g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
        RenderingHints.VALUE_ANTIALIAS_ON);

    // Define the shape to draw
    GeneralPath shape = new GeneralPath();
    shape.moveTo(xpoints[0], ypoints[0])// start at point 0
    shape.lineTo(xpoints[1], ypoints[1])// draw a line to point 1
    shape.lineTo(xpoints[2], ypoints[2])// and then on to point 2

    // Move the origin to the right and down, creating a margin
    g.translate(2040);

    // Now loop, drawing our shape with the three different line styles
    for (int i = 0; i < linestyles.length; i++) {
      g.setColor(Color.gray)// Draw a gray line
      g.setStroke(linestyles[i])// Select the line style to use
      g.draw(shape)// Draw the shape

      g.setColor(Color.black)// Now use black
      g.setStroke(thindashed)// And the thin dashed line
      g.draw(shape)// And draw the shape again.

      // Highlight the location of the vertexes of the shape
      // This accentuates the cap and join styles we're demonstrating
      for (int j = 0; j < xpoints.length; j++)
        g.fillRect(xpoints[j2, ypoints[j255);

      g.drawString(capNames[i]5105)// Label the cap style
      g.drawString(joinNames[i]5120)// Label the join style

      g.translate(1500)// Move over to the right before looping again
    }
  }
  public static void main(String[] a){
      JFrame f = new JFrame();
      f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
      f.setContentPane(new LineStyles());
      f.setSize(450,200);
      f.setVisible(true);
  }
}

           
         
  
Related examples in the same category
1. 画线使用Java 2D图形的API
2. 虚线
3. 线破折号风格2
4. 线破折号风格3
5. 虚线风格4
6. 绘制网格绘制网格
7. 丰富多彩的移动曲线显示在一个窗口
8. 绘制点:使用drawLine ( )方法
9. 线绘制使用两点
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.