将多张图片合为一张

“`
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;

/**
* @author oucq
* @version Aug 3, 2016 6:13:55 PM
*
* 该类实现了图片的合并功能,可以选择水平合并或者垂直合并。
*/
public class ImageUtil {

/*** @param fileUrl*            文件绝对路径或相对路径* @return 读取到的缓存图像* @throws IOException*             路径错误或者不存在该文件时抛出IO异常*/
public static BufferedImage getBufferedImage(String fileUrl) throws IOException {File f = new File(fileUrl);return ImageIO.read(f);
}/*** @param savedImg*            待保存的图像* @param saveDir*            保存的目录* @param fileName*            保存的文件名,必须带后缀,比如 "beauty.jpg"* @param format*            文件格式:jpg、png或者bmp* @return*/
public static boolean saveImage(BufferedImage savedImg, String saveDir, String fileName, String format) {boolean flag = false;// 先检查保存的图片格式是否正确String[] legalFormats = { "jpg", "JPG", "png", "PNG", "bmp", "BMP" };int i = 0;for (i = 0; i < legalFormats.length; i++) {if (format.equals(legalFormats[i])) {break;}}if (i == legalFormats.length) { // 图片格式不支持System.out.println("不是保存所支持的图片格式!");return false;}// 再检查文件后缀和保存的格式是否一致String postfix = fileName.substring(fileName.lastIndexOf('.') + 1);if (!postfix.equalsIgnoreCase(format)) {System.out.println("待保存文件后缀和保存的格式不一致!");return false;}String fileUrl = saveDir + fileName;File file = new File(fileUrl);try {flag = ImageIO.write(savedImg, format, file);} catch (IOException e) {e.printStackTrace();}return flag;
}/*** 待合并的两张图必须满足这样的前提,如果水平方向合并,则高度必须相等;如果是垂直方向合并,宽度必须相等。* mergeImage方法不做判断,自己判断。** @param img1*            待合并的第一张图* @param img2*            带合并的第二张图* @param isHorizontal*            为true时表示水平方向合并,为false时表示垂直方向合并* @return 返回合并后的BufferedImage对象* @throws IOException*/
public static BufferedImage mergeImage(boolean isHorizontal, BufferedImage img1, BufferedImage img2)throws IOException {int w1 = img1.getWidth();int h1 = img1.getHeight();int w2 = img2.getWidth();int h2 = img2.getHeight();// 从图片中读取RGBint[] ImageArrayOne = new int[w1 * h1];ImageArrayOne = img1.getRGB(0, 0, w1, h1, ImageArrayOne, 0, w1); // 逐行扫描图像中各个像素的RGB到数组中int[] ImageArrayTwo = new int[w2 * h2];ImageArrayTwo = img2.getRGB(0, 0, w2, h2, ImageArrayTwo, 0, w2);// 生成新图片BufferedImage DestImage = null;if (isHorizontal) { // 水平方向合并DestImage = new BufferedImage(w1 + w2, h1, BufferedImage.TYPE_INT_RGB);DestImage.setRGB(0, 0, w1, h1, ImageArrayOne, 0, w1); // 设置上半部分或左半部分的RGBDestImage.setRGB(w1, 0, w2, h2, ImageArrayTwo, 0, w2);} else { // 垂直方向合并DestImage = new BufferedImage(w1, h1 + h2, BufferedImage.TYPE_INT_RGB);DestImage.setRGB(0, 0, w1, h1, ImageArrayOne, 0, w1); // 设置上半部分或左半部分的RGBDestImage.setRGB(0, h1, w2, h2, ImageArrayTwo, 0, w2); // 设置下半部分的RGB}return DestImage;
}/**合并任数量的图片成一张图片* @param isHorizontal true代表水平合并,fasle代表垂直合并* @param imgs 欲合并的图片数组* @return* @throws IOException*/
public static BufferedImage mergeImage(boolean isHorizontal, BufferedImage... imgs) throws IOException {// 生成新图片BufferedImage DestImage = null;// 计算新图片的长和高int allw = 0, allh = 0, allwMax = 0, allhMax = 0;for (BufferedImage img : imgs) {allw += img.getWidth();allh += img.getHeight();if (img.getWidth() > allwMax) {allwMax = img.getWidth();};if (img.getHeight() > allhMax) {allhMax = img.getHeight();};}// 创建新图片if (isHorizontal) {DestImage = new BufferedImage(allw, allhMax, BufferedImage.TYPE_INT_RGB);} else {DestImage = new BufferedImage(allwMax, allh, BufferedImage.TYPE_INT_RGB);}// 合并所有子图片到新图片int wx = 0, wy = 0;for (int i = 0; i < imgs.length; i++) {BufferedImage img = imgs[i];int w1 = img.getWidth();int h1 = img.getHeight();// 从图片中读取RGBint[] ImageArrayOne = new int[w1 * h1];ImageArrayOne = img.getRGB(0, 0, w1, h1, ImageArrayOne, 0, w1); // 逐行扫描图像中各个像素的RGB到数组中if (isHorizontal) { // 水平方向合并DestImage.setRGB(wx, 0, w1, h1, ImageArrayOne, 0, w1); // 设置上半部分或左半部分的RGB} else { // 垂直方向合并DestImage.setRGB(0, wy, w1, h1, ImageArrayOne, 0, w1); // 设置上半部分或左半部分的RGB}wx += w1;wy += h1;}return DestImage;
}public static void main(String[] args) {// 读取待合并的文件BufferedImage bi1 = null;BufferedImage bi2 = null;try {bi1 = getBufferedImage("src/one.jpg");bi2 = getBufferedImage("src/two.jpg");} catch (IOException e) {e.printStackTrace();}// 调用mergeImage方法获得合并后的图像BufferedImage destImg = null;try {destImg = mergeImage(false, bi1, bi2, bi2);} catch (IOException e) {e.printStackTrace();}// 保存图像saveImage(destImg, "src/", "allv.jpg", "jpg");System.out.println("垂直合并完毕!");//System.out.println("下面是水平合并的情况:");try {bi1 = getBufferedImage("src/one.jpg");bi2 = getBufferedImage("src/two.jpg");} catch (IOException e) {e.printStackTrace();}// 调用mergeImage方法获得合并后的图像try {destImg = mergeImage(true, bi1, bi2, bi2);} catch (IOException e) {e.printStackTrace();}// 保存图像saveImage(destImg, "src/", "allh.jpg", "jpg");System.out.println("水平合并完毕!");}

}“`


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部