Java合并图片
一个合并图片的工具类,可通过Java将多张图片合成一张。
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
public class JoinMoreImage {
/**
* Java拼接多张图片
*
* @param imgs 图片地址集合
* @param type 图片类型
* @param dst_pic //输出的文件:F:/test2.jpg
* @return
*/
public static boolean merge(String[] imgs, String type, String dst_pic) {
//获取需要拼接的图片长度
int len = imgs.length;
//判断长度是否大于0
if (len < 1) {
return false;
}
File[] src = new File[len];
BufferedImage[] images = new BufferedImage[len];
int[][] ImageArrays = new int[len][];
for (int i = 0; i < len; i++) {
try {
src[i] = new File(imgs[i]);
images[i] = ImageIO.read(src[i]);
} catch (Exception e) {
e.printStackTrace();
return false;
}
int width = images[i].getWidth();
int height = images[i].getHeight();
// 从图片中读取RGB 像素
ImageArrays[i] = new int[width * height];
ImageArrays[i] = images[i].getRGB(0, 0, width, height, ImageArrays[i], 0, width);
}
int dst_height = 0;
int dst_width = images[0].getWidth();
//合成图片像素
for (int i = 0; i < images.length; i++) {
dst_width = dst_width > images[i].getWidth() ? dst_width : images[i].getWidth();
dst_height += images[i].getHeight();
}
//合成后的图片
System.out.println("宽度:" + dst_width);
System.out.println("高度:" + dst_height);
if (dst_height < 1) {
System.out.println("dst_height < 1");
return false;
}
// 生成新图片
try {
dst_width = images[0].getWidth();
BufferedImage ImageNew = new BufferedImage(dst_width, dst_height,
BufferedImage.TYPE_INT_RGB);
int height_i = 0;
for (int i = 0; i < images.length; i++) {
ImageNew.setRGB(0, height_i, dst_width, images[i].getHeight(),
ImageArrays[i], 0, dst_width);
height_i += images[i].getHeight();
}
File outFile = new File(dst_pic);
ImageIO.write(ImageNew, type, outFile);// 写图片 ,输出到硬盘
} catch (Exception e) {
e.printStackTrace();
return false;
}
return true;
}
//测试类:注意图片的长宽高不一致可能会报错
public static void main(String[] args) {
//输入图片地址
String[] imgs = {"F:/tomcat7/webapps/PicLive/image/fc24fa10-31.jpg", "F:/tomcat7/webapps/PicLive/image/08f48370-.jpg"};
//调用方法生成图片
JoinMoreImage.merge(imgs, "jpg", "F:/test.jpg");
}
}