JAVA PDF 转 PNG

使用 pdfbox 实现将PDF每页输出成PNG

github地址:GitHub - apache/pdfbox: Mirror of Apache PDFBox

<!-- pom.xml -->
<dependency>
    <groupId>org.apache.pdfbox</groupId>
    <artifactId>pdfbox-tools</artifactId>
    <version>3.0.0-RC1</version>
</dependency>
package com.converter;

import org.apache.pdfbox.Loader;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.rendering.PDFRenderer;

import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.*;

/**
 * @author hjf
 * @version 1.0
 * @description 
 * @date 2022-05-25 10:45
 */
public class ConverterPNG {


    /**
     *
     * @param fileName 要验证的文件
     * @param inDir    输入目录的名称
     * @param outDir   输出目录的名称
     * @return 是否执行失败
     * @throws IOException 
     */
    public static boolean doTestFile(String fileName, String inDir, String outDir) throws IOException {

        PDDocument document = null;

        try {

            //加载PDF 文件
            document = Loader.loadPDF(new File(inDir + '/' + fileName), (String) null);

            //生成前缀
            String outputPrefix = outDir + '/' + fileName + "-";

            //获取 PDF 页数
            int numPages = document.getNumberOfPages();

            //当 PDF 页数 小于 1
            if (numPages < 1) {
                throw new IOException("PDF 页数小于 1");
            }

            PDFRenderer renderer = new PDFRenderer(document);
            //循环处理每页 PDF
            for (int i = 0; i < numPages; i++) {
                //创建 PNG 名称
                String pngFileName = outputPrefix + (i + 1) + ".png";
                //将对应 PDF 页面转成 Image 对象
                BufferedImage image = renderer.renderImageWithDPI(i, 200); // 图像 DPI
                //输出图片
                ImageIO.write(image, "PNG", new File(pngFileName));
            }

        } catch (IOException e) {
            throw e;
        } finally {
            if (document != null) {
                document.close();
            }
        }
        return false;
    }


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

qq587492

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

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

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

打赏作者

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

抵扣说明:

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

余额充值