图片转换PDF文件

今天接到客户的需求,需要将一批TIF图片转换成PDF文件上传到海关和检验检疫局。废话不多说,直接上代码

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Image;
import com.lowagie.text.Utilities;
import com.lowagie.text.pdf.*;
import com.lowagie.text.pdf.codec.TiffImage;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

/**
 * Created by IntelliJ IDEA.
 * User: lerry.li
 * Date: 2016-09-18
 * Time: 上午11:10
 * To change this template use File | Settings | File Templates.
 */
public class ImageToPDFUtil {

    public static String convertJpgAndTif(List<String>oldPaths, String newPath){
        // 创建一个文档对象
        Document doc = new Document();
        FileOutputStream fileOS = null;
        try {
            fileOS = new FileOutputStream(newPath);
            // 定义输出文件的位置
            PdfWriter.getInstance(doc, fileOS);
            // 开启文档
            doc.open();
            for(String path : oldPaths){
                addToDoc(doc, path);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return e.getMessage();
        } catch (DocumentException e) {
            e.printStackTrace();
            return e.getMessage();
        } catch (IOException e) {
            e.printStackTrace();
            return e.getMessage();
        } finally {
            if (doc != null) {
                doc.close();
            }
        }
        return "success";
    }

    public static String convertManyTiff(List<String>oldPaths, String newPath){
        // 创建一个文档对象
        Document doc = new Document();
        try {
            // 定义输出文件的位置
            PdfWriter.getInstance(doc, new FileOutputStream(newPath));
            // 开启文档
            doc.open();
            Object localObject1 = null;
            Object localObject2 = null;
            Image localImage1 = null;
            for(String temp : oldPaths){
                URL paramURL = Utilities.toURL(temp);
                try {
                    if (paramURL.getProtocol().equals("file")) {
                        localObject2 = paramURL.getFile();
                        localObject2 = Utilities
                                .unEscapeURL((String) localObject2);
                        localObject1 = new RandomAccessFileOrArray((String) localObject2);
                    } else {
                        localObject1 = new RandomAccessFileOrArray(paramURL);
                    }

                    int pageNums = TiffImage
                            .getNumberOfPages((RandomAccessFileOrArray) localObject1);
                    if (pageNums > 0) {
                        for (int i = 1; i <= pageNums; i++) {
                            localObject2 = TiffImage.getTiffImage(
                                    (RandomAccessFileOrArray) localObject1, i);
                            Image jpg = (Image) localObject2;
                            // 获得图片的高度
                            float heigth = jpg.getHeight();
                            float width = jpg.getWidth();
                            // 合理压缩,h>w,按w压缩,否则按w压缩
                            int percent = getPercent(heigth, width);

                            // 设置图片居中显示
                            jpg.setAlignment(Image.MIDDLE);
                            // 按百分比显示图片的比例
                            if (width > 1024 || heigth > 786) {
                                jpg.scalePercent(percent);
                            }
                            doc.add(jpg);
                        }
                    }
                    if (localObject1 != null)
                        ((RandomAccessFileOrArray) localObject1).close();

                }catch (Exception ex){
                    ex.printStackTrace();
                    return ex.getMessage();
                }finally {
                    try{
                        if (localObject1 != null)
                            ((RandomAccessFileOrArray) localObject1).close();
                    }catch (Exception ex){
                        ex.printStackTrace();
                    }
                }

            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
            return e.getMessage();
        } catch (DocumentException e) {
            e.printStackTrace();
            return e.getMessage();
        } catch (IOException e) {
            e.printStackTrace();
            return e.getMessage();
        } finally {
            if (doc != null) {
                try{
                    doc.close();
                }catch (Exception ex){
                    ex.printStackTrace();
                }
            }
        }
        return "success";

    }

    public static boolean convert(String oldPath, String newPath) {
        // 创建一个文档对象
        Document doc = new Document();
        try {
            // 定义输出文件的位置
            PdfWriter.getInstance(doc, new FileOutputStream(newPath));
            // 开启文档
            doc.open();
            addToDoc(doc, oldPath);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (DocumentException e) {
            e.printStackTrace();
        }catch (IOException e) {
            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
        } finally {
            if (doc != null) {
                doc.close();
            }
        }
        return true;
    }
    //pdf文件合并
    public static boolean mergePdfFiles(String[] files, String newfile) {
        boolean retValue = false;
        Document document = null;
        try {
            document = new Document(new PdfReader(files[0]).getPageSize(1));
            PdfCopy copy = new PdfCopy(document, new FileOutputStream(newfile));
            document.open();
            for (int i = 0; i < files.length; i++) {
                PdfReader reader = new PdfReader(files[i]);
                int n = reader.getNumberOfPages();
                for (int j = 1; j <= n; j++) {
                    document.newPage();
                    PdfImportedPage page = copy.getImportedPage(reader, j);
                    copy.addPage(page);
                }
            }
            retValue = true;
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            document.close();
        }
        return retValue;
    }

    private static void addToDoc(Document doc, String oldPath) throws IOException, DocumentException {
        // 创建一个文档对象
        if (!oldPath.endsWith(".tif")) {
            Image jpg = Image.getInstance(oldPath); // 原来的图片的路径
            // 获得图片的高度
            float heigth = jpg.getHeight();
            float width = jpg.getWidth();
            // 合理压缩,h>w,按w压缩,否则按w压缩
            int percent = getPercent(heigth, width);
            // 设置图片居中显示
            jpg.setAlignment(Image.MIDDLE);
            // 按百分比显示图片的比例
            if (width > 1024 || heigth > 786) {
                jpg.scalePercent(percent);
            }
            doc.add(jpg);
        } else
        // tiff多页
        {
            Object localObject1 = null;
            Object localObject2 = null;
            Image localImage1 = null;
            URL paramURL = Utilities.toURL(oldPath);
            try {
                if (paramURL.getProtocol().equals("file")) {
                    localObject2 = paramURL.getFile();
                    localObject2 = Utilities
                            .unEscapeURL((String) localObject2);
                    localObject1 = new RandomAccessFileOrArray((String) localObject2);
                } else {
                    localObject1 = new RandomAccessFileOrArray(paramURL);
                }

                int pageNums = TiffImage
                        .getNumberOfPages((RandomAccessFileOrArray) localObject1);
                if (pageNums > 0) {
                    for (int i = 1; i <= pageNums; i++) {
                        localObject2 = TiffImage.getTiffImage(
                                (RandomAccessFileOrArray) localObject1, i);
                        Image jpg = (Image) localObject2;
                        // 获得图片的高度
                        float heigth = jpg.getHeight();
                        float width = jpg.getWidth();
                        // 合理压缩,h>w,按w压缩,否则按w压缩
                        int percent = getPercent(heigth, width);

                        // 设置图片居中显示
                        jpg.setAlignment(Image.MIDDLE);
                        // 按百分比显示图片的比例
                        if (width > 1024 || heigth > 786) {
                            jpg.scalePercent(percent);
                        }
                        doc.add(jpg);
                    }
                }
                if (localObject1 != null)
                    ((RandomAccessFileOrArray) localObject1).close();

            } finally {
                if (localObject1 != null)
                    ((RandomAccessFileOrArray) localObject1).close();
            }
        }
    }

    /**
     * 第一种解决方案 在不改变图片形状的同时,判断,如果h>w,则按h压缩,否则在w>h或w=h的情况下,按宽度压缩
     *
     * @param h
     * @param w
     * @return
     */

    public static int getPercent(float h, float w) {
        int p = 0;
        float p2 = 0.0f;
        if (h > w) {
            p2 = 210 / h * 279;
        } else {
            p2 = 210 / w * 279;
        }
        p = Math.round(p2);
        return p;
    }

    /**
     * 第二种解决方案,统一按照宽度压缩 这样来的效果是,所有图片的宽度是相等的
     *
     */
    public static int getPercent2(float h, float w) {
        int p = 0;
        float p2 = 0.0f;
        p2 = 530 / w * 100;
        p = Math.round(p2);
        return p;
    }

    public static void main(String[] args) {
        List<String>list = new ArrayList<String>();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
            String dateStr = sdf.format(new Date());
            String pdfPath = "D:/jpg2pdf/" + dateStr;
        File file = new File(pdfPath);
        if(!file.exists())file.mkdir();
        pdfPath += "/" + "document4.pdf";
        list.add("D:/jpg2pdf/359860201.TIF");
        list.add("D:/jpg2pdf/359860201_1.TIF");
//        convert("D:/jpg2pdf/359860201.TIF", "D:/jpg2pdf/document4.pdf");
        convertManyTiff(list, pdfPath);
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

阿★永

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值