程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA編程入門知識 >> java截取圖片示例

java截取圖片示例

編輯:JAVA編程入門知識

代碼如下:

/**
 *
 */
package com.b510;

import java.awt.Rectangle;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Date;
import java.util.Iterator;

import javax.imageio.ImageIO;
import javax.imageio.ImageReadParam;
import javax.imageio.ImageReader;
import javax.imageio.stream.ImageInputStream;

/**
 * @date 2012-11-26
 * @author xhw
 *
 */
public class ImageCut {

    /**
     * 源圖片路徑名稱如:c:\1.jpg
     */
    private String srcpath = "e:/poool.jpg";
    /**
     * 剪切圖片存放路徑名稱.如:c:\2.jpg
     */
    private String subpath = "e:/pool_end";
    /**
     * jpg圖片格式
     */
    private static final String IMAGE_FORM_OF_JPG = "jpg";
    /**
     * png圖片格式
     */
    private static final String IMAGE_FORM_OF_PNG = "png";
    /**
     * 剪切點x坐標
     */
    private int x;

    /**
     * 剪切點y坐標
     */
    private int y;

    /**
     * 剪切點寬度
     */
    private int width;

    /**
     * 剪切點高度
     */
    private int height;

    public ImageCut() {

    }

    public ImageCut(int x, int y, int width, int height) {
        this.x = x;
        this.y = y;
        this.width = width;
        this.height = height;
    }

    public static void main(String[] args) throws Exception {
        ImageCut imageCut = new ImageCut(134, 0, 366, 366);
        imageCut.cut(imageCut.getSrcpath(), imageCut.getSubpath());
    }

    /**
     * 返回包含所有當前已注冊 ImageReader 的 Iterator,這些 ImageReader 聲稱能夠解碼指定格式。
     * 參數:formatName - 包含非正式格式名稱 .(例如 "jpeg" 或 "tiff")等 。
     *
     * @param postFix
     *            文件的後綴名
     * @return
     */
    public Iterator<ImageReader> getImageReadersByFormatName(String postFix) {
        switch (postFix) {
        case IMAGE_FORM_OF_JPG:
            return ImageIO.getImageReadersByFormatName(IMAGE_FORM_OF_JPG);
        case IMAGE_FORM_OF_PNG:
            return ImageIO.getImageReadersByFormatName(IMAGE_FORM_OF_PNG);
        default:
            return ImageIO.getImageReadersByFormatName(IMAGE_FORM_OF_JPG);
        }
    }

    /**
     * 對圖片裁剪,並把裁剪完蛋新圖片保存 。
     * @param srcpath 源圖片路徑
     * @param subpath 剪切圖片存放路徑
     * @throws IOException
     */
    public void cut(String srcpath, String subpath) throws IOException {
        FileInputStream is = null;
        ImageInputStream iis = null;
        try {
            // 讀取圖片文件
            is = new FileInputStream(srcpath);

            // 獲取文件的後綴名
            String postFix = getPostfix(srcpath);
            System.out.println("圖片格式為:" + postFix);
            /*
             * 返回包含所有當前已注冊 ImageReader 的 Iterator,這些 ImageReader 聲稱能夠解碼指定格式。
             * 參數:formatName - 包含非正式格式名稱 .(例如 "jpeg" 或 "tiff")等 。
             */
            Iterator<ImageReader> it = getImageReadersByFormatName(postFix);

            ImageReader reader = it.next();
            // 獲取圖片流
            iis = ImageIO.createImageInputStream(is);

            /*
             * <p>iis:讀取源.true:只向前搜索 </p>.將它標記為 ‘只向前搜索'。
             * 此設置意味著包含在輸入源中的圖像將只按順序讀取,可能允許 reader 避免緩存包含與以前已經讀取的圖像關聯的數據的那些輸入部分。
             */
            reader.setInput(iis, true);

            /*
             * <p>描述如何對流進行解碼的類<p>.用於指定如何在輸入時從 Java Image I/O
             * 框架的上下文中的流轉換一幅圖像或一組圖像。用於特定圖像格式的插件 將從其 ImageReader 實現的
             * getDefaultReadParam 方法中返回 ImageReadParam 的實例。
             */
            ImageReadParam param = reader.getDefaultReadParam();

            /*
             * 圖片裁剪區域。Rectangle 指定了坐標空間中的一個區域,通過 Rectangle 對象
             * 的左上頂點的坐標(x,y)、寬度和高度可以定義這個區域。
             */
            Rectangle rect = new Rectangle(x, y, width, height);

            // 提供一個 BufferedImage,將其用作解碼像素數據的目標。
            param.setSourceRegion(rect);
            /*
             * 使用所提供的 ImageReadParam 讀取通過索引 imageIndex 指定的對象,並將 它作為一個完整的
             * BufferedImage 返回。
             */
            BufferedImage bi = reader.read(0, param);

            // 保存新圖片
            ImageIO.write(bi, postFix, new File(subpath + "_" + new Date().getTime() + "." + postFix));
        } finally {
            if (is != null)
                is.close();
            if (iis != null)
                iis.close();
        }

    }

    /**
     * 獲取inputFilePath的後綴名,如:"e:/test.pptx"的後綴名為:"pptx"<br>
     *
     * @param inputFilePath
     * @return
     */
    public String getPostfix(String inputFilePath) {
        return inputFilePath.substring(inputFilePath.lastIndexOf(".") + 1);
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }

    public String getSrcpath() {
        return srcpath;
    }

    public void setSrcpath(String srcpath) {
        this.srcpath = srcpath;
    }

    public String getSubpath() {
        return subpath;
    }

    public void setSubpath(String subpath) {
        this.subpath = subpath;
    }

    public int getWidth() {
        return width;
    }

    public void setWidth(int width) {
        this.width = width;
    }

    public int getX() {
        return x;
    }

    public void setX(int x) {
        this.x = x;
    }

    public int getY() {
        return y;
    }

    public void setY(int y) {
        this.y = y;
    }

}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved