图像操作 : 图像 « 图形用户界面 « 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.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.color.ColorSpace;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.awt.image.BufferedImageOp;
import java.awt.image.ByteLookupTable;
import java.awt.image.ColorConvertOp;
import java.awt.image.ConvolveOp;
import java.awt.image.Kernel;
import java.awt.image.LookupOp;
import java.awt.image.RescaleOp;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

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

/** A demonstration of various image processing filters */
public class ImageOps extends JPanel{
  static final int WIDTH = 600, HEIGHT = 675// Size of our example

  public String getName() {
    return "Image Processing";
  }

  public int getWidth() {
    return WIDTH;
  }

  public int getHeight() {
    return HEIGHT;
  }

  Image image;

  /** This constructor loads the image we will manipulate */
  public ImageOps() {
    java.net.URL imageurl = this.getClass().getResource("cover.gif");
    image = new javax.swing.ImageIcon(imageurl).getImage();
  }

  // These arrays of bytes are used by the LookupImageOp image filters below
  static byte[] brightenTable = new byte[256];

  static byte[] thresholdTable = new byte[256];
  static // Initialize the arrays
    for (int i = 0; i < 256; i++) {
      brightenTable[i(byte) (Math.sqrt(i / 255.0255);
      thresholdTable[i(byte) ((i < 225: i);
    }
  }

  // This AffineTransform is used by one of the image filters below
  static AffineTransform mirrorTransform;
  static // Create and initialize the AffineTransform
    mirrorTransform = AffineTransform.getTranslateInstance(1270);
    mirrorTransform.scale(-1.01.0)// flip horizontally
  }

  // These are the labels we'll display for each of the filtered images
  static String[] filterNames = new String[] { "Original""Gray Scale",
      "Negative""Brighten (linear)""Brighten (sqrt)""Threshold",
      "Blur""Sharpen""Edge Detect""Mirror""Rotate (center)",
      "Rotate (lower left)" };

  // The following BufferedImageOp image filter objects perform
  // different types of image processing operations.
  static BufferedImageOp[] filters = new BufferedImageOp[] {
      // 1) No filter here. We'll display the original image
      null,
      // 2) Convert to Grayscale color space
      new ColorConvertOp(ColorSpace.getInstance(ColorSpace.CS_GRAY)null),
      // 3) Image negative. Multiply each color value by -1.0 and add 255
      new RescaleOp(-1.0f255fnull),
      // 4) Brighten using a linear formula that increases all color
      // values
      new RescaleOp(1.25f0null),
      // 5) Brighten using the lookup table defined above
      new LookupOp(new ByteLookupTable(0, brightenTable)null),
      // 6) Threshold using the lookup table defined above
      new LookupOp(new ByteLookupTable(0, thresholdTable)null),
      // 7) Blur by "convolving" the image with a matrix
      new ConvolveOp(new Kernel(33new float[] { .1111f.1111f,
          .1111f.1111f.1111f.1111f.1111f.1111f.1111f})),
      // 8) Sharpen by using a different matrix
      new ConvolveOp(new Kernel(33new float[] { 0.0f, -0.75f0.0f,
          -0.75f4.0f, -0.75f0.0f, -0.75f0.0f })),
      // 9) Edge detect using yet another matrix
      new ConvolveOp(new Kernel(33new float[] { 0.0f, -0.75f0.0f,
          -0.75f3.0f, -0.75f0.0f, -0.75f0.0f })),
      // 10) Compute a mirror image using the transform defined above
      new AffineTransformOp(mirrorTransform,
          AffineTransformOp.TYPE_BILINEAR),
      // 11) Rotate the image 180 degrees about its center point
      new AffineTransformOp(AffineTransform.getRotateInstance(Math.PI,
          6495), AffineTransformOp.TYPE_NEAREST_NEIGHBOR),
      // 12) Rotate the image 15 degrees about the bottom left
      new AffineTransformOp(AffineTransform.getRotateInstance(
          Math.PI / 120190),
          AffineTransformOp.TYPE_NEAREST_NEIGHBOR)};

  /** Draw the example */
  public void paint(Graphics g1) {
    Graphics2D g = (Graphics2D)g1;
    // Create a BufferedImage big enough to hold the Image loaded
    // in the constructor. Then copy that image into the new
    // BufferedImage object so that we can process it.
    BufferedImage bimage = new BufferedImage(image.getWidth(this), image
        .getHeight(this), BufferedImage.TYPE_INT_RGB);
    Graphics2D ig = bimage.createGraphics();
    ig.drawImage(image, 00this)// copy the image

    // Set some default graphics attributes
    g.setFont(new Font("SansSerif", Font.BOLD, 12))// 12pt bold text
    g.setColor(Color.green)// Draw in green
    g.translate(1010)// Set some margins

    // Loop through the filters
    for (int i = 0; i < filters.length; i++) {
      // If the filter is null, draw the original image, otherwise,
      // draw the image as processed by the filter
      if (filters[i== null)
        g.drawImage(bimage, 00this);
      else
        g.drawImage(filters[i].filter(bimage, null)00this);
      g.drawString(filterNames[i]0205)// Label the image
      g.translate(1370)// Move over
      if (i % == 3)
        g.translate(-137 4215)// Move down after 4
    }
  }
  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 ImageOps());
    f.pack();
    f.setVisible(true);
  }
}

           
         
    
  
Related examples in the same category
1. Image size Image size
2. 图片演示图片演示
3. 获取图像颜色模型
4. 图像RGB值滤波
5. 创建过滤器,可以修改任何值RGB像素的图像。
6. 此过滤器删除所有红色的值
7. 加载和绘制图像
8. 绘制图标绘制图标
9. 图像处理:亮度和对比度图像处理:亮度和对比度
10. 用鼠标拖动图像移动事件用鼠标拖动图像移动事件
11. 图像动画及螺纹图像动画及螺纹
12. 灰度图像颜色的影响灰度图像颜色的影响
13. 图像缓冲图像缓冲
14. 图像效果:联合图像效果:联合
15. AffineTransform演示AffineTransform演示
16. 图像效果:旋转图像DataBuffer图像效果:旋转图像DataBuffer
17. 图像效果:锐化,模糊图像效果:锐化,模糊
18. 图象尺度
19. 图像剪裁
20. 绘画的图像与Convolve运行
21. 演示使用的图像I / O库
22. 添加图像拖拽行为
23. 通过剪贴板传送图像物体通过剪贴板传送图像物体
24. 反锯齿反锯齿
25. 图像浏览器图像浏览器
26. 得到图像尺寸;非负值
27. 独立的图像浏览器-适用于任何AWT支持的格式
28. 应用Toolkit.getImage ( )
29. Image Processing Test Image Processing Test
30. 图像传输试验图像传输试验
31. 双缓冲图像
32. Graband淡出:显示图像和褪色的黑
33. Graband淡出与Rasters
34. 图像旋转45度
35. 转换java.awt.image.BufferedImage以java.awt.Image
36. 过滤图像红,绿,蓝颜色
37. 拖拽的图片拖拽的图片
38. TYPE_INT_RGB和TYPE_INT_ARGB通常被用来
39. 可以从缓冲图像修改像素
40. 计算平均值的图像栅格
41. 使用PixelGrabber获取像素数据从一个Image对象
42. 翻转图像
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.