根據圖片的選中左上角度座標和寬高來截取生成新的圖片。測試經過,並已在項目中運用。可是不能切割動態的gif圖片。有點遺憾,待優化。 java
---注:main方法調試代碼記得修改圖片路徑 緩存
package com.common.myTest; import java.awt.Rectangle; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.util.Iterator; import javax.imageio.ImageIO; import javax.imageio.ImageReadParam; import javax.imageio.ImageReader; import javax.imageio.stream.ImageInputStream; /** * @author suchiheng * @see 圖片截取原理 */ public class OperateImage { // ===源圖片路徑名稱如:c:\1.jpg private String srcpath ; // ===剪切圖片存放路徑名稱.如:c:\2.jpg private String subpath ; // ===剪切點x座標 private int x ; private int y ; // ===剪切點寬度 private int width ; private int height ; public OperateImage() { } public OperateImage( int x, int y, int width, int height) { this .x = x ; this .y = y ; this .width = width ; this .height = height ; } /** * 對圖片裁剪,並把裁剪完蛋新圖片保存 。 */ public void cut()throws IOException { FileInputStream is = null ; ImageInputStream iis = null ; try { // 讀取圖片文件 is =new FileInputStream(srcpath); /* * 返回包含全部當前已註冊 ImageReader 的 Iterator,這些 ImageReader * 聲稱可以解碼指定格式。 參數:formatName - 包含非正式格式名稱 . *(例如 "jpeg" 或 "tiff")等 。 */ Iterator < ImageReader > it=ImageIO.getImageReadersByFormatName("jpg"); 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,"jpg",new File(subpath)); } finally { if (is != null ) is.close() ; if (iis != null ) iis.close(); } } 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; } /** * main方法 * @throws IOException */ public static void main(String[] args) throws IOException { // TODO Auto-generated method stub OperateImage operateImage = new OperateImage(120, 120, 100, 100); operateImage.setSrcpath("F:/ggf.jpg"); operateImage.setSubpath("F:/1.jpg") ; operateImage.cut(); } }