剪贴区 : 剪辑 « 图形用户界面 « 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 » 图形用户界面 » 剪辑屏幕截图 
剪贴区
剪贴区
 
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Rectangle;

import javax.swing.ImageIcon;
import javax.swing.JComponent;
import javax.swing.JFrame;

public class ClipDemo extends JComponent {
  private static Color red = new Color(25500150);

  private static Color green = new Color(02550150);

  private static Color blue = new Color(00255150);

  private static Font monoFont = new Font("Monospaced", Font.BOLD
      | Font.ITALIC, 36);

  private static Font sanFont = new Font("SanSerif", Font.PLAIN, 12);

  private static Font serifFont = new Font("Serif", Font.BOLD, 24);

  private static ImageIcon java2sLogo = new ImageIcon("java2sLogo.gif");

  public void paintComponent(Graphics g) {
    super.paintComponent(g);
    // get damaged region
    Rectangle clipRect = g.getClipBounds();
    int clipx = clipRect.x;
    int clipy = clipRect.y;
    int clipw = clipRect.width;
    int cliph = clipRect.height;

    // fill damaged region only
    g.setColor(Color.white);
    g.fillRect(clipx, clipy, clipw, cliph);

    if (clipx <= 240 && clipy <= 240) {
      g.setColor(Color.yellow);
      g.fillOval(00240240);
      System.out.println(" yellow Oval repainted.");
    }

    if (clipx + clipw >= 160 && clipx <= 400 && clipy + cliph >= 160
        && clipy <= 400) {
      g.setColor(Color.magenta);
      g.fillOval(160160240240);
      System.out.println(" magenta Oval repainted.");
    }

    int iconWidth = java2sLogo.getIconWidth();
    int iconHeight = java2sLogo.getIconHeight();

    if (clipx + clipw >= 280 (iconWidth / 2&& clipx <= (280 (iconWidth / 2))
        && clipy + cliph >= 120 (iconHeight / 2&& clipy <= (120 (iconHeight / 2))) {
      java2sLogo.paintIcon(this, g, 280 (iconWidth / 2)120 (iconHeight / 2));
      System.out.println(" logo below blue Rect repainted.");
    }

    if (clipx + clipw >= 120 (iconWidth / 2&& clipx <= (120 (iconWidth / 2))
        && clipy + cliph >= 280 (iconHeight / 2&& clipy <= (280 (iconHeight / 2))) {
      java2sLogo.paintIcon(this, g, 120 (iconWidth / 2)280 (iconHeight / 2));
      System.out.println(" logo below red Rect repainted.");
    }

    if (clipx + clipw >= 60 && clipx <= 180 && clipy + cliph >= 220
        && clipy <= 340) {
      g.setColor(red);
      g.fillRect(60220120120);
      System.out.println(" red Rect repainted.");

    }

    if (clipx + clipw > 140 && clipx < 260 && clipy + cliph > 140
        && clipy < 260) {
      g.setColor(green);
      g.fillOval(140140120120);
      System.out.println(" green Oval repainted.");

    }

    if (clipx + clipw > 220 && clipx < 380 && clipy + cliph > 60
        && clipy < 180) {
      g.setColor(blue);
      g.fillRect(22060120120);
      System.out.println(" blue Rect repainted.");
    }

    g.setColor(Color.black);

    g.setFont(monoFont);
    FontMetrics fm = g.getFontMetrics();
    iconWidth = fm.stringWidth("Java Source");
    iconHeight = fm.getAscent();
    int d = fm.getDescent();
    if (clipx + clipw > 120 (iconWidth / 2&& clipx < (120 (iconWidth / 2))
        && clipy + cliph > (120 (iconHeight / 4)) - iconHeight
        && clipy < (120 (iconHeight / 4)) + d) {
      g.drawString("Java Source"120 (iconWidth / 2)120 (iconHeight / 4));
      System.out.println(" Java Source repainted.");
    }

    g.setFont(sanFont);
    fm = g.getFontMetrics();
    iconWidth = fm.stringWidth("and");
    iconHeight = fm.getAscent();
    d = fm.getDescent();
    if (clipx + clipw > 200 (iconWidth / 2&& clipx < (200 (iconWidth / 2))
        && clipy + cliph > (200 (iconHeight / 4)) - iconHeight
        && clipy < (200 (iconHeight / 4)) + d) {
      g.drawString("and"200 (iconWidth / 2)200 (iconHeight / 4));
      System.out.println(" and repainted.");
    }

    g.setFont(serifFont);
    fm = g.getFontMetrics();
    iconWidth = fm.stringWidth("Support.");
    iconHeight = fm.getAscent();
    d = fm.getDescent();

    if (clipx + clipw > 280 (iconWidth / 2&& clipx < (280 (iconWidth / 2))
        && clipy + cliph > (280 (iconHeight / 4)) - iconHeight
        && clipy < (280 (iconHeight / 4)) + d) {
      g.drawString("Support."280 (iconWidth / 2)280 (iconHeight / 4));
      System.out.println(" Support. repainted.");
    }
  }

  public Dimension getPreferredSize() {
    return new Dimension(400400);
  }

  public Dimension getMinimumSize() {
    return getPreferredSize();
  }

  public static void main(String args[]) {
    JFrame mainFrame = new JFrame();
    mainFrame.getContentPane().add(new ClipDemo());
    mainFrame.pack();

    mainFrame.setVisible(true);
  }

}

           
         
  
Related examples in the same category
1. 剪辑图片剪辑图片
2. 剪辑的另一个领域剪辑的另一个领域
3. 剪辑试验剪辑试验
4. Text Transfer Test Text Transfer Test
5. 设置裁剪域的形状
6. 复制区性能
7. 裁剪限制某一区域裁剪限制某一区域
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.