java图片处理工具类
直接上代码:
- package com.zxd.tool;
- /**
- * Created by zhang on 14-3-1.
- * 图片的常用操作类
- */
- import java.awt.AlphaComposite;
- import java.awt.Color;
- import java.awt.Font;
- import java.awt.Graphics;
- import java.awt.Graphics2D;
- import java.awt.Image;
- import java.awt.Toolkit;
- import java.awt.color.ColorSpace;
- import java.awt.geom.AffineTransform;
- import java.awt.image.AffineTransformOp;
- import java.awt.image.BufferedImage;
- import java.awt.image.ColorConvertOp;
- import java.awt.image.CropImageFilter;
- import java.awt.image.FilteredImageSource;
- import java.awt.image.ImageFilter;
- import java.io.File;
- import java.io.IOException;
- import javax.imageio.ImageIO;
- /**
- * 图片处理工具类:<br>
- * 功能:缩放图像、切割图像、图像类型转换、彩色转黑白、文字水印、图片水印等
- *
- * @author Administrator
- */
- public class ImageUtils {
- /**
- * 几种常见的图片格式
- */
- public static String IMAGE_TYPE_GIF = "gif";// 图形交换格式
- public static String IMAGE_TYPE_JPG = "jpg";// 联合照片专家组
- public static String IMAGE_TYPE_JPEG = "jpeg";// 联合照片专家组
- public static String IMAGE_TYPE_BMP = "bmp";// 英文Bitmap(位图)的简写,它是Windows操作系统中的标准图像文件格式
- public static String IMAGE_TYPE_PNG = "png";// 可移植网络图形
- public static String IMAGE_TYPE_PSD = "psd";// Photoshop的专用格式Photoshop
- /**
- * 缩放图像(按比例缩放)
- *
- * @param srcImageFile 源图像文件地址(绝对路径)
- * @param result 缩放后的图像地址(绝对路径)
- * @param scale 缩放比例
- * @param flag 缩放选择:true 放大; false 缩小;
- */
- public final static void scale(String srcImageFile, String result,
- int scale, boolean flag) {
- try {
- BufferedImage src = ImageIO.read(new File(srcImageFile)); // 读入文件
- int width = src.getWidth(); // 得到源图宽
- int height = src.getHeight(); // 得到源图长
- if (flag) {// 放大
- width = width * scale;
- height = height * scale;
- } else {// 缩小
- width = width / scale;
- height = height / scale;
- }
- Image image = src.getScaledInstance(width, height,
- Image.SCALE_DEFAULT);
- BufferedImage tag = new BufferedImage(width, height,
- BufferedImage.TYPE_INT_RGB);
- Graphics g = tag.getGraphics();
- g.drawImage(image, 0, 0, null); // 绘制缩小后的图
- g.dispose();
- ImageIO.write(tag, "JPEG", new File(result));// 输出到文件流
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- * 缩放图像(按高度和宽度缩放)
- *
- * @param srcImageFile 源图像文件地址(绝对路径)
- * @param result 缩放后的图像地址(绝对路径)
- * @param height 缩放后的高度
- * @param width 缩放后的宽度
- * @param bb 比例不对时是否需要补白:true为补白; false为不补白;
- */
- public final static void scale2(String srcImageFile, String result, int height, int width, boolean bb) {
- try {
- double ratio = 0.0; // 缩放比例
- File f = new File(srcImageFile);
- BufferedImage bi = ImageIO.read(f);
- Image itemp = bi.getScaledInstance(width, height, bi.SCALE_SMOOTH);
- // 计算比例
- if ((bi.getHeight() > height) || (bi.getWidth() > width)) {
- if (bi.getHeight() > bi.getWidth()) {
- ratio = (new Integer(height)).doubleValue()
- / bi.getHeight();
- } else {
- ratio = (new Integer(width)).doubleValue() / bi.getWidth();
- }
- AffineTransformOp op = new AffineTransformOp(AffineTransform
- .getScaleInstance(ratio, ratio), null);
- itemp = op.filter(bi, null);
- }
- if (bb) {//补白
- BufferedImage image = new BufferedImage(width, height,
- BufferedImage.TYPE_INT_RGB);
- Graphics2D g = image.createGraphics();
- g.setColor(Color.white);
- g.fillRect(0, 0, width, height);
- if (width == itemp.getWidth(null))
- g.drawImage(itemp, 0, (height - itemp.getHeight(null)) / 2,
- itemp.getWidth(null), itemp.getHeight(null),
- Color.white, null);
- else
- g.drawImage(itemp, (width - itemp.getWidth(null)) / 2, 0,
- itemp.getWidth(null), itemp.getHeight(null),
- Color.white, null);
- g.dispose();
- itemp = image;
- }
- ImageIO.write((BufferedImage) itemp, "JPEG", new File(result));
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- * 图像切割(按指定起点坐标和宽高切割)
- *
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param result 切片后的图像地址 (绝对路径)
- * @param x 目标切片起点坐标X
- * @param y 目标切片起点坐标Y
- * @param width 目标切片宽度
- * @param height 目标切片高度
- */
- public final static void cut(String srcImageFile, String result,
- int x, int y, int width, int height) {
- try {
- // 读取源图像
- BufferedImage bi = ImageIO.read(new File(srcImageFile));
- int srcWidth = bi.getHeight(); // 源图宽度
- int srcHeight = bi.getWidth(); // 源图高度
- if (srcWidth > 0 && srcHeight > 0) {
- Image image = bi.getScaledInstance(srcWidth, srcHeight,
- Image.SCALE_DEFAULT);
- // 四个参数分别为图像起点坐标和宽高
- // 即: CropImageFilter(int x,int y,int width,int height)
- ImageFilter cropFilter = new CropImageFilter(x, y, width, height);
- Image img = Toolkit.getDefaultToolkit().createImage(
- new FilteredImageSource(image.getSource(),
- cropFilter));
- BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
- Graphics g = tag.getGraphics();
- g.drawImage(img, 0, 0, width, height, null); // 绘制切割后的图
- g.dispose();
- // 输出为文件
- ImageIO.write(tag, "JPEG", new File(result));
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 图像切割(指定切片的行数和列数)
- *
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param descDir 切片目标文件夹
- * @param rows 目标切片行数。默认2,必须是范围 [1, 20] 之内
- * @param cols 目标切片列数。默认2,必须是范围 [1, 20] 之内
- */
- public final static void cut2(String srcImageFile, String descDir,
- int rows, int cols) {
- try {
- if (rows <= 0 || rows > 20) rows = 2; // 切片行数
- if (cols <= 0 || cols > 20) cols = 2; // 切片列数
- // 读取源图像
- BufferedImage bi = ImageIO.read(new File(srcImageFile));
- int srcWidth = bi.getHeight(); // 源图宽度
- int srcHeight = bi.getWidth(); // 源图高度
- if (srcWidth > 0 && srcHeight > 0) {
- Image img;
- ImageFilter cropFilter;
- Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT);
- int destWidth = srcWidth; // 每张切片的宽度
- int destHeight = srcHeight; // 每张切片的高度
- // 计算切片的宽度和高度
- if (srcWidth % cols == 0) {
- destWidth = srcWidth / cols;
- } else {
- destWidth = (int) Math.floor(srcWidth / cols) + 1;
- }
- if (srcHeight % rows == 0) {
- destHeight = srcHeight / rows;
- } else {
- destHeight = (int) Math.floor(srcWidth / rows) + 1;
- }
- // 循环建立切片
- // 改进的想法:是否可用多线程加快切割速度
- for (int i = 0; i < rows; i++) {
- for (int j = 0; j < cols; j++) {
- // 四个参数分别为图像起点坐标和宽高
- // 即: CropImageFilter(int x,int y,int width,int height)
- cropFilter = new CropImageFilter(j * destWidth, i * destHeight,
- destWidth, destHeight);
- img = Toolkit.getDefaultToolkit().createImage(
- new FilteredImageSource(image.getSource(),
- cropFilter));
- BufferedImage tag = new BufferedImage(destWidth,
- destHeight, BufferedImage.TYPE_INT_RGB);
- Graphics g = tag.getGraphics();
- g.drawImage(img, 0, 0, null); // 绘制缩小后的图
- g.dispose();
- // 输出为文件
- ImageIO.write(tag, "JPEG", new File(descDir
- + "_r" + i + "_c" + j + ".jpg"));
- }
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 图像切割(指定切片的宽度和高度)
- *
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param descDir 切片目标文件夹
- * @param destWidth 目标切片宽度。默认200
- * @param destHeight 目标切片高度。默认150
- */
- public final static void cut3(String srcImageFile, String descDir,
- int destWidth, int destHeight) {
- try {
- if (destWidth <= 0) destWidth = 200; // 切片宽度
- if (destHeight <= 0) destHeight = 150; // 切片高度
- // 读取源图像
- BufferedImage bi = ImageIO.read(new File(srcImageFile));
- int srcWidth = bi.getHeight(); // 源图宽度
- int srcHeight = bi.getWidth(); // 源图高度
- if (srcWidth > destWidth && srcHeight > destHeight) {
- Image img;
- ImageFilter cropFilter;
- Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT);
- int cols = 0; // 切片横向数量
- int rows = 0; // 切片纵向数量
- // 计算切片的横向和纵向数量
- if (srcWidth % destWidth == 0) {
- cols = srcWidth / destWidth;
- } else {
- cols = (int) Math.floor(srcWidth / destWidth) + 1;
- }
- if (srcHeight % destHeight == 0) {
- rows = srcHeight / destHeight;
- } else {
- rows = (int) Math.floor(srcHeight / destHeight) + 1;
- }
- // 循环建立切片
- // 改进的想法:是否可用多线程加快切割速度
- for (int i = 0; i < rows; i++) {
- for (int j = 0; j < cols; j++) {
- // 四个参数分别为图像起点坐标和宽高
- // 即: CropImageFilter(int x,int y,int width,int height)
- cropFilter = new CropImageFilter(j * destWidth, i * destHeight,
- destWidth, destHeight);
- img = Toolkit.getDefaultToolkit().createImage(
- new FilteredImageSource(image.getSource(),
- cropFilter));
- BufferedImage tag = new BufferedImage(destWidth,
- destHeight, BufferedImage.TYPE_INT_RGB);
- Graphics g = tag.getGraphics();
- g.drawImage(img, 0, 0, null); // 绘制缩小后的图
- g.dispose();
- // 输出为文件
- ImageIO.write(tag, "JPEG", new File(descDir
- + "_r" + i + "_c" + j + ".jpg"));
- }
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 图像类型转换:GIF->JPG、GIF->PNG、PNG->JPG、PNG->GIF(X)、BMP->PNG
- *
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param formatName 包含格式非正式名称的 String:如JPG、JPEG、GIF等
- * @param destImageFile 目标图像地址 (绝对路径)
- */
- public final static void convert(String srcImageFile, String formatName, String destImageFile) {
- try {
- File f = new File(srcImageFile);
- f.canRead();
- f.canWrite();
- BufferedImage src = ImageIO.read(f);
- ImageIO.write(src, formatName, new File(destImageFile));
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 彩色转为黑白
- *
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param destImageFile 目标图像地址 (绝对路径)
- */
- public final static void gray(String srcImageFile, String destImageFile) {
- try {
- BufferedImage src = ImageIO.read(new File(srcImageFile));
- ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);
- ColorConvertOp op = new ColorConvertOp(cs, null);
- src = op.filter(src, null);
- ImageIO.write(src, "JPEG", new File(destImageFile));
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- * 给图片添加文字水印
- *
- * @param pressText 水印文字
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param destImageFile 目标图像地址 (绝对路径)
- * @param fontName 水印的字体名称
- * @param fontStyle 水印的字体样式
- * @param color 水印的字体颜色
- * @param fontSize 水印的字体大小
- * @param x 修正值
- * @param y 修正值
- * @param alpha 透明度:alpha 必须是范围 [0.0, 1.0] 之内(包含边界值)的一个浮点数字
- */
- public final static void pressText(String pressText,
- String srcImageFile, String destImageFile, String fontName,
- int fontStyle, Color color, int fontSize, int x,
- int y, float alpha) {
- try {
- File img = new File(srcImageFile);
- Image src = ImageIO.read(img);
- int width = src.getWidth(null);
- int height = src.getHeight(null);
- BufferedImage image = new BufferedImage(width, height,
- BufferedImage.TYPE_INT_RGB);
- Graphics2D g = image.createGraphics();
- g.drawImage(src, 0, 0, width, height, null);
- g.setColor(color);
- g.setFont(new Font(fontName, fontStyle, fontSize));
- g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP,
- alpha));
- // 在指定坐标绘制水印文字
- g.drawString(pressText, (width - (getLength(pressText) * fontSize))
- / 2 + x, (height - fontSize) / 2 + y);
- g.dispose();
- ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile));// 输出到文件流
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 给图片添加文字水印
- *
- * @param pressText 水印文字
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param destImageFile 目标图像地址 (绝对路径)
- * @param fontName 字体名称
- * @param fontStyle 字体样式
- * @param color 字体颜色
- * @param fontSize 字体大小
- * @param x 修正值
- * @param y 修正值
- * @param alpha 透明度:alpha 必须是范围 [0.0, 1.0] 之内(包含边界值)的一个浮点数字
- */
- public final static void pressText2(String pressText, String srcImageFile, String destImageFile,
- String fontName, int fontStyle, Color color, int fontSize, int x,
- int y, float alpha) {
- try {
- File img = new File(srcImageFile);
- Image src = ImageIO.read(img);
- int width = src.getWidth(null);
- int height = src.getHeight(null);
- BufferedImage image = new BufferedImage(width, height,
- BufferedImage.TYPE_INT_RGB);
- Graphics2D g = image.createGraphics();
- g.drawImage(src, 0, 0, width, height, null);
- g.setColor(color);
- g.setFont(new Font(fontName, fontStyle, fontSize));
- g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP,
- alpha));
- // 在指定坐标绘制水印文字
- g.drawString(pressText, (width - (getLength(pressText) * fontSize))
- / 2 + x, (height - fontSize) / 2 + y);
- g.dispose();
- ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile));
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 给图片添加图片水印
- *
- * @param pressImg 水印图片 (绝对路径)
- * @param srcImageFile 源图像地址 (绝对路径)
- * @param destImageFile 目标图像地址 (绝对路径)
- * @param x 修正值。 默认在中间
- * @param y 修正值。 默认在中间
- * @param alpha 透明度:alpha 必须是范围 [0.0, 1.0] 之内(包含边界值)的一个浮点数字
- */
- public final static void pressImage(String pressImg, String srcImageFile, String destImageFile,
- int x, int y, float alpha) {
- try {
- File img = new File(srcImageFile);
- Image src = ImageIO.read(img);
- int wideth = src.getWidth(null);
- int height = src.getHeight(null);
- BufferedImage image = new BufferedImage(wideth, height,
- BufferedImage.TYPE_INT_RGB);
- Graphics2D g = image.createGraphics();
- g.drawImage(src, 0, 0, wideth, height, null);
- // 水印文件
- Image src_biao = ImageIO.read(new File(pressImg));
- int wideth_biao = src_biao.getWidth(null);
- int height_biao = src_biao.getHeight(null);
- g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP,
- alpha));
- g.drawImage(src_biao, (wideth - wideth_biao) / 2,
- (height - height_biao) / 2, wideth_biao, height_biao, null);
- // 水印文件结束
- g.dispose();
- ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile));
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
- * 计算text的长度(一个中文算两个字符)
- *
- * @param text
- * @return
- */
- public final static int getLength(String text) {
- int length = 0;
- for (int i = 0; i < text.length(); i++) {
- if (new String(text.charAt(i) + "").getBytes().length > 1) {
- length += 2;
- } else {
- length += 1;
- }
- }
- return length / 2;
- }
- }
java图片处理工具类的更多相关文章
- java 图片处理工具类
import java.awt.Image; import java.awt.Rectangle; import java.awt.geom.AffineTransform; import ja ...
- 图片处理工具类 - ImageUtils.java
纯JAVA实现的图片处理工具类,提供图片的裁剪.压缩.获取尺寸.制作圆角等方法. 源码如下:(点击下载 -ImageUtils.java .FolderUtils.java .commons-io-2 ...
- Java操作图片的工具类
操作图片的工具类: import java.awt.AlphaComposite; import java.awt.Color; import java.awt.Font; import java.a ...
- Java的图片处理工具类
import Java.awt.AlphaComposite; import java.awt.Color; import java.awt.Font; import java.awt.Graphic ...
- 【转】java缩放图片、java裁剪图片代码工具类
一首先看下效果 二工具类 三测试类 在系统的上传图片功能中,我们无法控制用户上传图片的大小,用户可能会上传大到几十M小到1k的的图片,一方面图片太大占据了太多的空间,另一方面,我们没办法在页面上显示统 ...
- Java常用工具类---image图片处理工具类、Json工具类
package com.jarvis.base.util; import java.io.ByteArrayInputStream;import java.io.ByteArrayOutputStre ...
- 图片水印工具类java
关于jar包的导入我就不多说了,我会把引入的jar包显示出来,大家自行Google package com.net.util; import java.awt.AlphaComposite; impo ...
- java文件处理工具类
import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedRead ...
- Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类
Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类 ============================== ©Copyright 蕃薯耀 20 ...
随机推荐
- CSS样式的优势
为什么使用css样式来设置网页的外观样式呢?下面是一段文字,我们想把“超酷的互联网”.“服务及时贴心”.“有趣易学”这三个短语的文本颜色设置为红色,这时就 可以通过设置样式来设置,而且只需要编写一条c ...
- PHP Predefined Interfaces 预定义接口
SPL提供了6个迭代器接口: Traversable 遍历接口(检测一个类是否可以使用 foreach 进行遍历的接口) Iterator 迭代器接口(可在内部迭代自己的外部迭代器或类的接口) Ite ...
- Navicat 选择语句
1.进入数据库后,点击Query 2.点击new query 3.左边提供界面的筛选条件,如果不清楚sql语句,可直接在上面操作 4.右边可自己编写sql语句 5.写完语句后,点击Run,在resul ...
- OpenGL画图旋转
#include<gl/glut.h>#include<gl/GL.h>#include<gl/GLU.h>#include<math.h>#inclu ...
- Groovy创建和解析json
正文: 在Groovy 1.8发布新闻中,提到Groovy增加了对JSON的支持.Dustin Marx在其博文中,讲述了这一功能的使用. 用法真的很简单,创建一个JSON对象: import gr ...
- TP开发小技巧
TP开发小技巧原文地址http://wp.chenyuanzhao.com/wp/2016/07/23/tp%E5%BC%80%E5%8F%91%E5%B0%8F%E6%8A%80%E5%B7%A7/ ...
- Js监控回车事件
标题通俗的说,也就是绑定当用户按下回车键要执行的事件. 下面,入正题. 第一步,先编写简单的页面代码,这里我们只需要一个按钮就足够了.当然,还有按钮事件. <html> <head& ...
- C语言 位操作
c语言位操作中需要注意有: 位操作只针对整型和字符型数据 在右移操作中:对无符号数和有符号中的正数补 0:符号数中的负数,取决于所使用的系统:补 0 的称为“逻辑右移”,补 1 的称为“算术右移”. ...
- GIve Me A Welcome Hug!
类似于初来乍到,和大家打个招呼,并矫情的希望路人也能回赠我一个welcome hug. 到了这种园子那一定是做CS相关的了,一直以为如果能够坚持写技术博客,那一定会对自己的内力有十足的提升.借用一位前 ...
- express+jade+bootstrap+mongdb simple CRUD test
1:当前环境 y@y:~$ node --version && express -V && mongo --version v0.12.2 MongoDB shell ...