多图片合并

//多图片合并
public static String merge(String[] imgs, String type, String mergePic) {
    int dstHeight = 0;
    int dstWidth = 0;
    // 获取需要拼接的图片长度
    int len = imgs.length;
    File[] file = new File[len];
    BufferedImage[] images = new BufferedImage[len];
    int[][] ImageArrays = new int[len][];
    for (int i = 0; i < len; i++) {
        try {
            file[i] = new File(imgs[i]);
            images[i] = ImageIO.read(file[i]);
        } catch (Exception e) {
            e.printStackTrace();
        }
        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);
        // 计算合并的宽度和高度
        dstWidth = dstWidth > width ? dstWidth : width;
        dstHeight += height;
    }
    // 生成新图片
    try {
        BufferedImage imageNew = new BufferedImage(dstWidth, dstHeight, BufferedImage.TYPE_INT_RGB);
        int height_i = 0;
        for (int i = 0; i < images.length; i++) {
            int width = images[i].getWidth();
            int height = images[i].getHeight();
            imageNew.setRGB(0, height_i, width, height, ImageArrays[i], 0, width);
            height_i += height;
        }
        File outFile = new File(mergePic);
        // 写图片,输出到硬盘
        ImageIO.write(imageNew, type, outFile);
    } catch (Exception e) {
        e.printStackTrace();
    }
    return mergePic;
}

//调用

String substring = pdfPath.substring(0,pdfPath.lastIndexOf(File.separator));
String[] url=new String[100];
int i=0;
File jpgFile=new File(substring);
for (File f:jpgFile.listFiles()) {
    if(f.getPath().indexOf(".pdf.jpg")!=-1){
        url[i]=f.getPath();
        i++;
    }
}
List list= new ArrayList<>(url.length);
for (String str : url) {
    if(null!=str){
        list.add(str.trim());
    }
}
String[] list2 = (String[]) list.toArray(new String[list.size()]);
merge(list2, "png", pdfPath+".jpg");
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值