Java实现将多张图片保存至PDF

下面教程将实现如何将多张图片保存至PDF,以供参考
首先,导入对应依赖:

 
            com.lowagie
            itext
            2.1.7
        

实现代码如下:

@Test
    public void toPdf() {
        try {
            // 图片文件夹地址
            String imageFolderPath = "D:/img/";
            // 图片地址
            String imagePath;
            // PDF文件保存地址
            String pdfPath = "d:/test.pdf";
            // 输入流
            FileOutputStream fos = new FileOutputStream(pdfPath);
            // 创建文档
            Document doc = new Document(null, 0, 0, 0, 0);
            //doc.open();
            // 写入PDF文档
            PdfWriter.getInstance(doc, fos);
            // 读取图片流
            BufferedImage img;
            // 实例化图片
            Image image;
            // 获取图片文件夹对象
            File file = new File(imageFolderPath);
            File[] files = file.listFiles();
            // 循环获取图片文件夹内的图片
            for (File file1 : files) {
                if (file1.getName().endsWith(".png")
                        || file1.getName().endsWith(".jpg")
                        || file1.getName().endsWith(".gif")
                        || file1.getName().endsWith(".jpeg")
                        || file1.getName().endsWith(".tif")) {
                    imagePath = imageFolderPath + file1.getName();
                    //(file1.getName());
                    // 读取图片流
                    img = ImageIO.read(new File(imagePath));
                    System.err.println("宽度" + img.getWidth());
                    System.err.println("高度" + img.getHeight());
                    // 根据图片大小设置文档大小
                    doc.setPageSize(new Rectangle(img.getWidth(), img
                            .getHeight()));
                    // 实例化图片
                    image = Image.getInstance(imagePath);
                    // 添加图片到文档
                    doc.open();
                    doc.add(image);
                }
            }
            // 关闭文档
            doc.close();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (BadElementException e) {
            e.printStackTrace();
        } catch (DocumentException e) {
            e.printStackTrace();
        }
    }

你可能感兴趣的:(java,java)