Paint Test : 涂料 « 图形用户界面 « 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 » 图形用户界面 » 涂料屏幕截图 
Paint Test
Paint Test

/**
 @version 1.00 1999-09-11
 @author Cay Horstmann
 */

import java.awt.Color;
import java.awt.Container;
import java.awt.GradientPaint;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.MediaTracker;
import java.awt.Paint;
import java.awt.TexturePaint;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.geom.Ellipse2D;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;

import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;

public class PaintTest {
  public static void main(String[] args) {
    JFrame frame = new PaintTestFrame();
    frame.show();
  }
}

class PaintTestFrame extends JFrame implements ActionListener {
  public PaintTestFrame() {
    setTitle("PaintTest");
    setSize(400400);
    addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });

    Container contentPane = getContentPane();
    canvas = new PaintPanel();
    contentPane.add(canvas, "Center");

    JPanel buttonPanel = new JPanel();
    ButtonGroup group = new ButtonGroup();

    colorButton = new JRadioButton("Color"true);
    buttonPanel.add(colorButton);
    group.add(colorButton);
    colorButton.addActionListener(this);

    gradientPaintButton = new JRadioButton("Gradient Paint"false);
    buttonPanel.add(gradientPaintButton);
    group.add(gradientPaintButton);
    gradientPaintButton.addActionListener(this);

    texturePaintButton = new JRadioButton("Texture Paint"false);
    buttonPanel.add(texturePaintButton);
    group.add(texturePaintButton);
    texturePaintButton.addActionListener(this);

    contentPane.add(buttonPanel, "North");
  }

  public void actionPerformed(ActionEvent event) {
    Object source = event.getSource();
    if (source == colorButton)
      canvas.setColor();
    else if (source == gradientPaintButton)
      canvas.setGradientPaint();
    else if (source == texturePaintButton)
      canvas.setTexturePaint();
  }

  private PaintPanel canvas;

  private JRadioButton colorButton;

  private JRadioButton gradientPaintButton;

  private JRadioButton texturePaintButton;
}

class PaintPanel extends JPanel {
  public PaintPanel() {
    Image image = Toolkit.getDefaultToolkit().getImage("java2s.gif");
    MediaTracker tracker = new MediaTracker(this);
    tracker.addImage(image, 0);
    try {
      tracker.waitForID(0);
    catch (InterruptedException e) {
    }
    bufferedImage = new BufferedImage(image.getWidth(null), image
        .getHeight(null), BufferedImage.TYPE_INT_ARGB);
    Graphics2D g2 = bufferedImage.createGraphics();
    g2.drawImage(image, 00null);

    setColor();
  }

  public void paintComponent(Graphics g) {
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2Dg;
    g2.setPaint(paint);
    Ellipse2D circle = new Ellipse2D.Double(00, getWidth(), getHeight());
    g2.fill(circle);
  }

  public void setColor() {
    paint = Color.red; // Color implements Paint
    repaint();
  }

  public void setGradientPaint() {
    paint = new GradientPaint(00, Color.red, (floatgetWidth(),
        (floatgetHeight(), Color.blue);
    repaint();
  }

  public void setTexturePaint() {
    Rectangle2D anchor = new Rectangle2D.Double(00* bufferedImage
        .getWidth()* bufferedImage.getHeight());
    paint = new TexturePaint(bufferedImage, anchor);
    repaint();
  }

  private Paint paint;

  private BufferedImage bufferedImage;
}

           
       
Related examples in the same category
1. 绘制字符串绘制字符串
2. 绘制的颜色和文字绘制的颜色和文字
3. 反锯齿反锯齿
4. 绘制绘制
5. 绘制网格绘制网格
6. Render Quality Test Render Quality Test
7. 绘制绘制
8. 图片缩放
9. 径向渐变径向渐变
10. 关于中心变换
11. 安全重绘
12. 量表测试
13. Scaling Methods
14. 简单属性的绘画
15. 两站梯度两站梯度
16. 坏与好原始渲染
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.