纯JAVA实现的图片处理工具类,提供图片的裁剪、压缩、获取尺寸、制作圆角等方法。

源码如下:(点击下载 -ImageUtils.java 、FolderUtils.java 、commons-io-2.4.jarcommons-lang-2.6.jar)

import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.RenderingHints;
import java.awt.geom.RoundRectangle2D;
import java.awt.image.BufferedImage;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.util.Iterator;
import javax.imageio.IIOImage;
import javax.imageio.ImageIO;
import javax.imageio.ImageWriteParam;
import javax.imageio.ImageWriter;
import javax.imageio.stream.ImageOutputStream;
import org.apache.commons.io.FilenameUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils; /**
* 纯JAVA实现的图片处理工具类
*
*/
public class ImageUtils { /**
* 获取图片尺寸信息
*
* @param filePath
* a {@link java.lang.String} object.
* @return [width, height]
*/
public static int[] getSizeInfo(String filePath) throws Exception {
File file = new File(filePath);
return getSizeInfo(file);
} /**
* 获取图片尺寸信息
*
* @param url
* a {@link java.net.URL} object.
* @return [width,height]
*/
public static int[] getSizeInfo(URL url) throws Exception {
InputStream input = null;
try {
input = url.openStream();
return getSizeInfo(input);
} catch (IOException e) {
e.printStackTrace();
throw new Exception(e);
} finally {
IOUtils.closeQuietly(input);
}
} /**
* 获取图片尺寸信息
*
* @param file
* a {@link java.io.File} object.
* @return [width,height]
*/
public static int[] getSizeInfo(File file) throws Exception {
if (!file.exists()) {
throw new Exception("file " + file.getAbsolutePath() + " doesn't exist.");
}
BufferedInputStream input = null;
try {
input = new BufferedInputStream(new FileInputStream(file));
return getSizeInfo(input);
} catch (FileNotFoundException e) {
e.printStackTrace();
throw new Exception(e);
} finally {
IOUtils.closeQuietly(input);
}
} /**
* 获取图片尺寸
*
* @param input
* a {@link java.io.InputStream} object.
* @return [width,height]
*/
public static int[] getSizeInfo(InputStream input) throws Exception {
try {
BufferedImage img = ImageIO.read(input);
int w = img.getWidth(null);
int h = img.getHeight(null);
return new int[] { w, h };
} catch (IOException e) {
e.printStackTrace();
throw new Exception(e);
}
} /**
* 重调图片尺寸
*
* @param srcFilePath
* 原图路径
* @param destFile
* 目标文件
* @param width
* 新的宽度,小于1则忽略,按原图比例缩放
* @param height
* 新的高度,小于1则忽略,按原图比例缩放
*/
public static void resize(String srcFilePath, String destFile, int width, int height) throws Exception {
resize(srcFilePath, destFile, width, height, -1, -1);
} /**
* 重调图片尺寸
*
* @param input
* a {@link java.io.InputStream} object.
* @param output
* a {@link java.io.OutputStream} object.
* @param width
* a int.
* @param height
* a int.
*/
public static void resize(InputStream input, OutputStream output, int width, int height) throws Exception {
resize(input, output, width, height, -1, -1);
} /**
* 重调图片尺寸
*
* @param input
* a {@link java.io.InputStream} object.
* @param output
* a {@link java.io.OutputStream} object.
* @param width
* a int.
* @param height
* a int.
* @param maxWidth
* a int.
* @param maxHeight
* a int.
*/
public static void resize(InputStream input, OutputStream output,
int width, int height, int maxWidth, int maxHeight) throws Exception { if (width < 1 && height < 1 && maxWidth < 1 && maxHeight < 1) {
try {
IOUtils.copy(input, output);
} catch (IOException e) {
throw new Exception("resize error: ", e);
}
}
try {
BufferedImage img = ImageIO.read(input);
boolean hasNotAlpha = !img.getColorModel().hasAlpha();
double w = img.getWidth(null);
double h = img.getHeight(null);
int toWidth;
int toHeight;
double rate = w / h; if (width > 0 && height > 0) {
rate = ((double) width) / ((double) height);
toWidth = width;
toHeight = height;
} else if (width > 0) {
toWidth = width;
toHeight = (int) (toWidth / rate);
} else if (height > 0) {
toHeight = height;
toWidth = (int) (toHeight * rate);
} else {
toWidth = ((Number) w).intValue();
toHeight = ((Number) h).intValue();
} if (maxWidth > 0 && toWidth > maxWidth) {
toWidth = maxWidth;
toHeight = (int) (toWidth / rate);
}
if (maxHeight > 0 && toHeight > maxHeight) {
toHeight = maxHeight;
toWidth = (int) (toHeight * rate);
} BufferedImage tag = new BufferedImage(toWidth, toHeight, hasNotAlpha ? BufferedImage.TYPE_INT_RGB : BufferedImage.TYPE_INT_ARGB); // Image.SCALE_SMOOTH 的缩略算法 生成缩略图片的平滑度的 优先级比速度高 生成的图片质量比较好 但速度慢
tag.getGraphics().drawImage(img.getScaledInstance(toWidth, toHeight, Image.SCALE_SMOOTH), 0, 0, null);
ImageIO.write(tag, hasNotAlpha ? "jpg" : "png", output);
} catch (Exception e) {
e.printStackTrace();
throw new Exception(e);
} finally {
IOUtils.closeQuietly(input);
IOUtils.closeQuietly(output);
} } /**
* 重调图片尺寸
*
* @param srcFile
* 原图路径
* @param destFile
* 目标文件
* @param width
* 新的宽度,小于1则忽略,按原图比例缩放
* @param height
* 新的高度,小于1则忽略,按原图比例缩放
* @param maxWidth
* 最大宽度,限制目标图片宽度,小于1则忽略此设置
* @param maxHeight
* 最大高度,限制目标图片高度,小于1则忽略此设置
*/
public static void resize(String srcFile, String destFile, int width,
int height, int maxWidth, int maxHeight) throws Exception {
resize(new File(srcFile), new File(destFile), width, height, maxWidth, maxHeight);
} /**
* 重调图片尺寸
*
* @param srcFile
* 原图路径
* @param destFile
* 目标文件
* @param width
* 新的宽度,小于1则忽略,按原图比例缩放
* @param height
* 新的高度,小于1则忽略,按原图比例缩放
*/
public static void resize(File srcFile, File destFile, int width, int height) throws Exception {
resize(srcFile, destFile, width, height, -1, -1);
} /**
* 重调图片尺寸
*
* @param srcFile
* 原图路径
* @param destFile
* 目标文件
* @param width
* 新的宽度,小于1则忽略,按原图比例缩放
* @param height
* 新的高度,小于1则忽略,按原图比例缩放
* @param maxWidth
* 最大宽度,限制目标图片宽度,小于1则忽略此设置
* @param maxHeight
* 最大高度,限制目标图片高度,小于1则忽略此设置
*/
public static void resize(File srcFile, File destFile, int width,
int height, int maxWidth, int maxHeight) throws Exception {
if (destFile.exists()) {
destFile.delete();
} else {
FolderUtils.mkdirs(destFile.getParent());
}
InputStream input = null;
OutputStream output = null;
try {
input = new BufferedInputStream(new FileInputStream(srcFile));
output = new FileOutputStream(destFile);
resize(input, output, width, height, maxWidth, maxHeight);
} catch (FileNotFoundException e) {
e.printStackTrace();
throw new Exception(e);
} finally {
IOUtils.closeQuietly(input);
IOUtils.closeQuietly(output);
}
} /**
* 裁剪图片
*
* @param source
* a {@link java.lang.String} object.
* @param target
* a {@link java.lang.String} object.
* @param x
* a int.
* @param y
* a int.
* @param w
* a int.
* @param h
* a int.
*/
public static void crop(String source, String target, int x, int y, int w, int h) throws Exception {
crop(new File(source), new File(target), x, y, w, h);
} /**
* 裁剪图片
*
* @param source
* a {@link java.io.File} object.
* @param target
* a {@link java.io.File} object.
* @param x
* a int.
* @param y
* a int.
* @param w
* a int.
* @param h
* a int.
*/
public static void crop(File source, File target, int x, int y, int w, int h) throws Exception {
OutputStream output = null;
InputStream input = null;
String ext = FilenameUtils.getExtension(target.getName());
try {
input = new BufferedInputStream(new FileInputStream(source));
if (target.exists()) {
target.delete();
} else {
FolderUtils.mkdirs(target.getParent());
}
output = new BufferedOutputStream(new FileOutputStream(target));
} catch (IOException e) {
throw new Exception(e);
}
crop(input, output, x, y, w, h, StringUtils.equalsIgnoreCase("png", ext));
} /**
* 裁剪图片
*
* @param x
* a int.
* @param y
* a int.
* @param w
* a int.
* @param h
* a int.
* @param input
* a {@link java.io.InputStream} object.
* @param output
* a {@link java.io.OutputStream} object.
* @param isPNG
* a boolean.
*/
public static void crop(InputStream input, OutputStream output, int x,
int y, int w, int h, boolean isPNG) throws Exception {
try {
BufferedImage srcImg = ImageIO.read(input);
int tmpWidth = srcImg.getWidth();
int tmpHeight = srcImg.getHeight();
int xx = Math.min(tmpWidth - 1, x);
int yy = Math.min(tmpHeight - 1, y); int ww = w;
if (xx + w > tmpWidth) {
ww = Math.max(1, tmpWidth - xx);
}
int hh = h;
if (yy + h > tmpHeight) {
hh = Math.max(1, tmpHeight - yy);
} BufferedImage dest = srcImg.getSubimage(xx, yy, ww, hh); BufferedImage tag = new BufferedImage(w, h, isPNG ? BufferedImage.TYPE_INT_ARGB : BufferedImage.TYPE_INT_RGB); tag.getGraphics().drawImage(dest, 0, 0, null);
ImageIO.write(tag, isPNG ? "png" : "jpg", output);
} catch (Exception e) {
e.printStackTrace();
throw new Exception(e);
} finally {
IOUtils.closeQuietly(input);
IOUtils.closeQuietly(output);
}
} /**
* 压缩图片,PNG图片按JPG处理
*
* @param input
* a {@link java.io.InputStream} object.
* @param output
* a {@link java.io.OutputStream} object.
* @param quality
* 图片质量0-1之间
*/
public static final void optimize(InputStream input, OutputStream output, float quality) throws Exception { // create a BufferedImage as the result of decoding the supplied
// InputStream
BufferedImage image;
ImageOutputStream ios = null;
ImageWriter writer = null;
try {
image = ImageIO.read(input); // get all image writers for JPG format
Iterator<ImageWriter> writers = ImageIO.getImageWritersByFormatName("jpeg"); if (!writers.hasNext())
throw new IllegalStateException("No writers found"); writer = (ImageWriter) writers.next();
ios = ImageIO.createImageOutputStream(output); writer.setOutput(ios); ImageWriteParam param = writer.getDefaultWriteParam(); // optimize to a given quality
param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
param.setCompressionQuality(quality); // appends a complete image stream containing a single image and
// associated stream and image metadata and thumbnails to the output
writer.write(null, new IIOImage(image, null, null), param);
} catch (IOException e) {
e.printStackTrace();
throw new Exception(e);
} finally {
if (ios != null) {
try {
ios.close();
} catch (IOException e) {
e.printStackTrace();
throw new Exception(e);
}
}
writer.dispose();
}
} /**
* 压缩图片
*
* @param source
* a {@link java.lang.String} object.
* @param target
* a {@link java.lang.String} object.
* @param quality
* a float.
*/
public static final void optimize(String source, String target, float quality) throws Exception {
File fromFile = new File(source);
File toFile = new File(target);
optimize(fromFile, toFile, quality);
} /**
* 压缩图片
*
* @param source
* a {@link java.io.File} object.
* @param target
* a {@link java.io.File} object.
* @param quality
* 图片质量0-1之间
*/
public static final void optimize(File source, File target, float quality) throws Exception {
if (target.exists()) {
target.delete();
} else {
FolderUtils.mkdirs(target.getParent());
}
InputStream is = null;
OutputStream os = null;
try {
is = new BufferedInputStream(new FileInputStream(source));
os = new BufferedOutputStream(new FileOutputStream(target));
optimize(is, os, quality);
} catch (FileNotFoundException e) {
throw new Exception(e);
} finally {
IOUtils.closeQuietly(is);
IOUtils.closeQuietly(os);
}
} /**
* 制作圆角
*
* @param srcFile
* 原文件
* @param destFile
* 目标文件
* @param cornerRadius
* 角度
*/
public static void makeRoundedCorner(File srcFile, File destFile, int cornerRadius) throws Exception {
InputStream in = null;
OutputStream out = null; try {
in = new BufferedInputStream(new FileInputStream(srcFile));
FolderUtils.mkdirs(destFile.getParentFile().getAbsolutePath());
out = new BufferedOutputStream(new FileOutputStream(destFile));
makeRoundedCorner(in, out, cornerRadius);
} catch (IOException e) {
e.printStackTrace();
throw new Exception(e);
} finally {
IOUtils.closeQuietly(out);
IOUtils.closeQuietly(in);
} } /**
* 制作圆角
*
* @param srcFile
* 原文件
* @param destFile
* 目标文件
* @param cornerRadius
* 角度
*/
public static void makeRoundedCorner(String srcFile, String destFile, int cornerRadius) throws Exception {
makeRoundedCorner(new File(srcFile), new File(destFile), cornerRadius);
} /**
* 制作圆角
*
* @param inputStream
* 原图输入流
* @param outputStream
* 目标输出流
* @param radius
* 角度
*/
public static void makeRoundedCorner(final InputStream inputStream,
final OutputStream outputStream, final int radius) throws Exception {
BufferedImage sourceImage = null;
BufferedImage targetImage = null;
try {
sourceImage = ImageIO.read(inputStream);
int w = sourceImage.getWidth();
int h = sourceImage.getHeight();
System.out.println(w); int cornerRadius = radius < 1 ? w / 4 : radius; targetImage = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB); Graphics2D g2 = targetImage.createGraphics(); // This is what we want, but it only does hard-clipping, i.e.
// aliasing
// g2.setClip(new RoundRectangle2D ...) // so instead fake soft-clipping by first drawing the desired clip
// shape
// in fully opaque white with antialiasing enabled...
g2.setComposite(AlphaComposite.Src);
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
g2.setColor(Color.WHITE);
g2.fill(new RoundRectangle2D.Float(0, 0, w, h, cornerRadius, cornerRadius)); // ... then compositing the image on top,
// using the white shape from above as alpha source
g2.setComposite(AlphaComposite.SrcAtop);
g2.drawImage(sourceImage, 0, 0, null);
g2.dispose();
ImageIO.write(targetImage, "png", outputStream);
} catch (IOException e) {
e.printStackTrace();
throw new Exception(e);
}
} }

图片处理工具类 - ImageUtils.java的更多相关文章

  1. 验证码图片生成工具类——Captcha.java

    验证码图片生成工具,使用JAVA生成的图片验证码,调用getRandcode方法获取图片验证码,以流的方式传输到前端页面. 源码如下:(点击下载  Captcha.java) import java. ...

  2. Java操作图片的工具类

    操作图片的工具类: import java.awt.AlphaComposite; import java.awt.Color; import java.awt.Font; import java.a ...

  3. java图片处理工具类

    直接上代码: package com.zxd.tool; /** * Created by zhang on 14-3-1. * 图片的常用操作类 */ import java.awt.AlphaCo ...

  4. Java的图片处理工具类

    import Java.awt.AlphaComposite; import java.awt.Color; import java.awt.Font; import java.awt.Graphic ...

  5. 【转】java缩放图片、java裁剪图片代码工具类

    一首先看下效果 二工具类 三测试类 在系统的上传图片功能中,我们无法控制用户上传图片的大小,用户可能会上传大到几十M小到1k的的图片,一方面图片太大占据了太多的空间,另一方面,我们没办法在页面上显示统 ...

  6. Java常用工具类---image图片处理工具类、Json工具类

    package com.jarvis.base.util; import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStre ...

  7. 图片水印工具类java

    关于jar包的导入我就不多说了,我会把引入的jar包显示出来,大家自行Google package com.net.util; import java.awt.AlphaComposite; impo ...

  8. JavaUtil_03_图片处理工具类

    一.源码 功能:缩放图像.切割图像.图像类型转换.彩色转黑白.文字水印.图片水印等 package com.ray.dingtalk.util; import java.awt.AlphaCompos ...

  9. Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类

    Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类 ============================== ©Copyright 蕃薯耀 20 ...

随机推荐

  1. poj 1422 Air Raid 最少路径覆盖

    题目链接:http://poj.org/problem?id=1422 Consider a town where all the streets are one-way and each stree ...

  2. 【BZOJ】【4002】【JLOI2015】有意义的字符串

    构造线性递推式+矩阵乘法 题解戳PoPoQQQ 为了自己以后看的方便手打一遍好了>_> 求$( \frac{b+\sqrt{d}}{2} )^n$的整数部分对p取模后的值 其中$b\mod ...

  3. 8大排序算法图文讲解 分类: Brush Mode 2014-08-18 11:49 78人阅读 评论(0) 收藏

    排序算法可以分为内部排序和外部排序,内部排序是数据记录在内存中进行排序,而外部排序是因排序的数据很大,一次不能容纳全部的排序记录,在排序过程中需要访问外存. 常见的内部排序算法有:插入排序.希尔排序. ...

  4. IIS Express 及 vs2008下使用IIS Express

    介绍 IIS Express 开发 ASP.NET 的应用程序是我的主要工作.当然我会选择最适合的开发环境.客户多属于企业用户,我的开发的选择,多半是 ASP.NET Web Application ...

  5. JS中的间歇(周期)调用setInterval()与超时(延迟)调用setTimeout()相关总结

    超时调用需要使用window.setTimeout(code,millisec)方法 它接受两个参数:要执行的代码和以毫秒表示的时间(即在执行代码前需要等待多少毫秒).其中第一个参数可以是一个包含JS ...

  6. Web Component 文章

    周末无意中了解了Web Component的概念. http://blog.amowu.com/2013/06/web-components.html http://www.v2ex.com/t/69 ...

  7. tar命令--解压缩

    tar命令是linux中的一个解压缩的命令.使用tar命令之前首先要搞清楚两个概念:打包和压缩.打包是指将一大堆文件或目录变成一个总的文件:压缩则是将一个大的文件通过一些压缩算法变成一个小文件. 为什 ...

  8. ThinkPHP3.2 分页实现

    ThinkPHP 分页实现   TP3.2框架手册,有一个数据分页,不过每次都要写太多的代码,还有中文设置等有些麻烦,做为程序开发者,有必要整理下: O.先看效果图 一.分页方法 /** * TODO ...

  9. CAP定理与RDBMS的ACID

    一.分布式领域CAP理论 CAP定理指在设计分布式系统时,一致性(Consistent).可用性(Availability).可靠性(分区容忍性Partition Tolerance)三个属性不可能同 ...

  10. iOS导航栏-导航栏透明

    设置一张透明图片:nav_bargound.png  //导航栏背景     [self.navigationController.navigationBar setBackgroundImage:[ ...