当前位置: 首页 > article >正文

pdf文件转图片,base64或保存到本地

pdf转图片,需要引入pdfbox依赖

<dependency>
	<groupId>org.apache.pdfbox</groupId>
	<artifactId>pdfbox</artifactId>
	<version>2.0.27</version>
</dependency>
@RequestMapping("pdfToImg")
public void pdfToImg(){
    PDDocument document = null;
    InputStream inputStream = null;
    ByteArrayOutputStream outputStream = null;
    try{
        inputStream = new FileInputStream(new File("F:\\贴纸.pdf"));
        document = PDDocument.load(inputStream);
        PDFRenderer renderer = new PDFRenderer(document);
        int pageSize = document.getNumberOfPages();
        String text = "";
        // 一页一页读取
        outputStream = new ByteArrayOutputStream();
        for (int i = 0; i < pageSize; i++) {
            //每一页通过分辨率和颜色值进行转化
            BufferedImage bufferedImage = renderer.renderImageWithDPI(i, 300);

        //    ImageIO.write(bufferedImage,"png",new File("F:\\下载\\img_"+i+".png"));
            ImageIO.write(bufferedImage,"png",outputStream);
            outputStream.flush();
        }
        byte[] imagesBytes = outputStream.toByteArray();
        String imageBase64 = Base64.getEncoder().encodeToString(imagesBytes);
		System.out.println(imageBase64);
    }catch (Exception e){
        System.out.println(e.getMessage());
    }finally {
        try {
            if (document != null) {
                document.close();
            }
            if(inputStream != null){
                inputStream.close();
            }
            if(outputStream != null){
                outputStream.close();
            }
        } catch (IOException e) {
            System.out.println(e.getMessage());
        }
    }
}

http://www.kler.cn/a/308614.html

相关文章:

  • C语言 | Leetcode C语言题解之第557题反转字符串中的单词III
  • WordPress HTTPS 配置问题解决方案
  • 某app最新版 vmp算法分析一
  • WebGIS三维地图框架--Cesium
  • 力扣515:在每个树行中找最大值
  • 假期增设:福祉与负担并存,寻求生活经济平衡之道
  • django 通过地址访问本地文件
  • Java原生HttpURLConnection实现Get、Post、Put和Delete请求完整工具类分享
  • 高级I/O知识分享【5种IO模型 || select || poll】
  • c++概念
  • windows启动jar指定jdk路径
  • 网页本地存储
  • 【C++】list 模拟实现
  • Vscode运行Python无法导入自己编写的包的解决方法
  • 后端开发刷题 | 最长上升子序列
  • odoo14 | 报错:Database backup error: Access Denied
  • MyBatis之手动映射
  • SSL认证解说
  • 个人随想-gpt-o1大模型中推理链的一个落地实现
  • Linux学习记录十四----------线程的创建和回收
  • Leetcode—1184. 公交站间的距离【简单】
  • Linux(CentOS8)服务器安装RabbitMQ
  • Python数据分析工具(一):Requests的用法
  • 游戏中的唯一id生成,防止合服id重复
  • 成功激活mac idea 记录
  • Java封装(面向对象)