java 大图片处理GraphicsMagick + im4java [缩放,旋转,裁剪]

为君一笑 提交于 2019-11-27 06:41:10

java 大图片处理GraphicsMagick + im4java [缩放,旋转,裁剪]

ImageMagick

主页:http://www.imagemagick.org/script/index.php

GraphicsMagick

主页:http://www.graphicsmagick.org/

两个图片处理软件我就不说了,因为我没那个评论的本事,其实这些软件都会有命令行的指令,然后我们用java调用来对图片进行编辑,调用什么指令可能学一下才知道,不过我们也不用自己写指令吧,因为别人已经封装好了那些指令的接口(JNI),下面就是那些JNI

jmagick

主页:http://www.jmagick.org/index.html

下载地址:http://downloads.jmagick.org/

缺点:实地测试后发现,速度果然提高了不少,但是质量却大大下降了,在大量测试数据下,每生成100张图片约会有5张图片生成出现错误,还会出现down机的情况。 jmagick

im4java

主页:http://im4java.sourceforge.net/

下载地址:http://sourceforge.net/projects/im4java/files/

API:http://im4java.sourceforge.net/api/

im4java

用那个不用说吧,看更新时间,不知道你们会选择什么

所以我选用了 GraphicsMagick +im4java

下载GraphicsMagick http://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.17/ 其实他就是一个软件,然后windows版本会自动将安装目录加入到path变量,所以在指令窗口可以调用,即安装好就不管它了

下载im4java来方便我们在java调用 http://sourceforge.net/projects/im4java/files/

然后将里面的im4java-1.3.2加入到我们的项目引用里面就可以了 jar包

根据别人的代码,自己再封装了一下接口吧,基本够用,那些水印的就没加上去了,现在不需要 工具很强大,都是靠指令,所以多看看API和软件本身的使用吧

好吧,我忽悠完了,把时间交给你们了. 附上代码:[好纠结的代码编辑器,只能这样了]

<!-- lang: java -->
package test;

import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.ArrayList;

import org.im4java.core.ConvertCmd; import org.im4java.core.IM4JavaException; import org.im4java.core.IMOperation; import org.im4java.core.IdentifyCmd; import org.im4java.process.ArrayListOutputConsumer;

public class TestGm { /** * * 获得图片文件大小[小技巧来获得图片大小] * * @param filePath * 文件路径 * * * @return 文件大小 */

public int getSize(String imagePath) {
	int size = 0;
	FileInputStream inputStream = null;
	try {
		inputStream = new FileInputStream(imagePath);
		size = inputStream.available();
		inputStream.close();
		inputStream = null;
	} catch (FileNotFoundException e) {
		size = 0;
		System.out.println("文件未找到!");
	} catch (IOException e) {
		size = 0;
		System.out.println("读取文件大小错误!");
	} finally {
		// 可能异常为关闭输入流,所以需要关闭输入流
		if (null != inputStream) {
			try {
				inputStream.close();
			} catch (IOException e) {
				System.out.println("关闭文件读入流异常");
			}
			inputStream = null;

		}
	}
	return size;
}

/**
 * 获得图片的宽度
 * 
 * @param filePath
 *            文件路径
 * @return 图片宽度
 */
public int getWidth(String imagePath) {
	int line = 0;
	try {
		IMOperation op = new IMOperation();
		op.format("%w"); // 设置获取宽度参数
		op.addImage(1);
		IdentifyCmd identifyCmd = new IdentifyCmd(true);
		ArrayListOutputConsumer output = new ArrayListOutputConsumer();
		identifyCmd.setOutputConsumer(output);
		identifyCmd.run(op, imagePath);
		ArrayList<String> cmdOutput = output.getOutput();
		assert cmdOutput.size() == 1;
		line = Integer.parseInt(cmdOutput.get(0));
	} catch (Exception e) {
		line = 0;
		System.out.println("运行指令出错!");
	}
	return line;
}

/**
 * 获得图片的高度
 * 
 * @param imagePath
 *            文件路径
 * @return 图片高度
 */
public int getHeight(String imagePath) {
	int line = 0;
	try {
		IMOperation op = new IMOperation();

		op.format("%h"); // 设置获取高度参数
		op.addImage(1);
		IdentifyCmd identifyCmd = new IdentifyCmd(true);
		ArrayListOutputConsumer output = new ArrayListOutputConsumer();
		identifyCmd.setOutputConsumer(output);
		identifyCmd.run(op, imagePath);
		ArrayList<String> cmdOutput = output.getOutput();
		assert cmdOutput.size() == 1;
		line = Integer.parseInt(cmdOutput.get(0));
	} catch (Exception e) {
		line = 0;
		System.out.println("运行指令出错!"+e.toString());
	}
	return line;
}

/**
 * 图片信息
 * 
 * @param imagePath
 * @return
 */
public static String getImageInfo(String imagePath) {
	String line = null;
	try {
		IMOperation op = new IMOperation();
		op.format("width:%w,height:%h,path:%d%f,size:%b%[EXIF:DateTimeOriginal]");
		op.addImage(1);
		IdentifyCmd identifyCmd = new IdentifyCmd(true);
		ArrayListOutputConsumer output = new ArrayListOutputConsumer();
		identifyCmd.setOutputConsumer(output);
		identifyCmd.run(op, imagePath);
		ArrayList<String> cmdOutput = output.getOutput();
		assert cmdOutput.size() == 1;
		line = cmdOutput.get(0);

	} catch (Exception e) {
		e.printStackTrace();
	}
	return line;
}

/**
 * 裁剪图片
 * 
 * @param imagePath
 *            源图片路径
 * @param newPath
 *            处理后图片路径
 * @param x
 *            起始X坐标
 * @param y
 *            起始Y坐标
 * @param width
 *            裁剪宽度
 * @param height
 *            裁剪高度
 * @return 返回true说明裁剪成功,否则失败
 */
public boolean cutImage(String imagePath, String newPath, int x, int y,
		int width, int height) {
	boolean flag = false;
	try {
		IMOperation op = new IMOperation();
		op.addImage(imagePath);
		/** width:裁剪的宽度 * height:裁剪的高度 * x:裁剪的横坐标 * y:裁剪纵坐标 */
		op.crop(width, height, x, y);
		op.addImage(newPath);
		ConvertCmd convert = new ConvertCmd(true);
		convert.run(op);
		flag = true;
	} catch (IOException e) {
		System.out.println("文件读取错误!");
		flag = false;
	} catch (InterruptedException e) {
		flag = false;
	} catch (IM4JavaException e) {
		flag = false;
	} finally {

	}
	return flag;
}

/**
 * 根据尺寸缩放图片[等比例缩放:参数height为null,按宽度缩放比例缩放;参数width为null,按高度缩放比例缩放]
 * 
 * @param imagePath
 *            源图片路径
 * @param newPath
 *            处理后图片路径
 * @param width
 *            缩放后的图片宽度
 * @param height
 *            缩放后的图片高度
 * @return 返回true说明缩放成功,否则失败
 */
public boolean zoomImage(String imagePath, String newPath, Integer width,
		Integer height) {

	boolean flag = false;
	try {
		IMOperation op = new IMOperation();
		op.addImage(imagePath);
		if (width == null) {// 根据高度缩放图片
			op.resize(null, height);
		} else if (height == null) {// 根据宽度缩放图片
			op.resize(width);
		} else {
			op.resize(width, height);
		}
		op.addImage(newPath);
		ConvertCmd convert = new ConvertCmd(true);
		convert.run(op);
		flag = true;
	} catch (IOException e) {
		System.out.println("文件读取错误!");
		flag = false;
	} catch (InterruptedException e) {
		flag = false;
	} catch (IM4JavaException e) {
		flag = false;
	} finally {

	}
	return flag;
}

/**
 * 图片旋转
 * 
 * @param imagePath
 *            源图片路径
 * @param newPath
 *            处理后图片路径
 * @param degree
 *            旋转角度
 */
public boolean rotate(String imagePath, String newPath, double degree) {
	boolean flag = false;
	try {
		// 1.将角度转换到0-360度之间
		degree = degree % 360;
		if (degree <= 0) {
			degree = 360 + degree;
		}
		IMOperation op = new IMOperation();
		op.addImage(imagePath);
		op.rotate(degree);
		op.addImage(newPath);
		ConvertCmd cmd = new ConvertCmd(true);
		cmd.run(op);
		flag = true;
	} catch (Exception e) {
		flag = false;
		System.out.println("图片旋转失败!");
	}
	return flag;
}

public static void main(String[] args) throws Exception {
	TestGm imageUtil = new TestGm();
	
	System.out.println("原图片大小:" + imageUtil.getSize("d://test.jpg") + "Bit");
	System.out.println("原图片宽度:" + imageUtil.getWidth("d://test.jpg"));
	System.out.println("原图片高度:" + imageUtil.getHeight("d://test.jpg"));
	if (imageUtil.zoomImage("d://test.jpg", "d://test1.jpg", 500, null)) {
		if (imageUtil.rotate("d://test.jpg", "d://test2.jpg", 15)) {
			if (imageUtil.cutImage("d://test2.jpg", "d://test3.jpg", 32,
					105, 200, 200)) {
				System.out.println("编辑成功");
			} else {
				System.out.println("编辑失败03");
			}
		} else {
			System.out.println("编辑失败02");
		}
	} else {
		System.out.println("编辑失败01");
	}
	
}

}

相关文章:

ImageMagick图片处理工具的安装 --- http://elf8848.iteye.com/blog/455675

选择ImageMagick还是GraphicsMagick(翻译)--- http://co63oc.blog.51cto.com/904636/328997

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!