spring boot 版本pdf 转 图片

需求

需要将pdf 上传到默默网站上,但是需要的是图片格式,有可能是一张有可能是多张,其他软件要么付费,要么免费的就几页其他的还不完整,气人不气人,
所以根据这个需求,进行一个java 版本的将pdf 转换为图片功能,尤其是文员的同事,最头痛了,每个月的会员费。

演示

img.png

选择一个pdf 文件


img_1.png

点击转图片


img_2.png

等待几秒就可以了。
也可以 使用main 方法


img_3.png

结果
多张


img_5.png

单张


img_6.png

实现方法

实现步骤 将pdf 转换本地,然后创建一个本地文件夹,用于放图片文件夹;

多图情况下,直接将文件夹打包下载下来就可以了。

单图情况下,将文件夹下的图片合并成一个图片,我发现这个单个图片和多张图片的下载包差不多大小。

img_4.png

所以单张图片的时候需要压缩一下。这个暂不说了。

然后再通过ZipOutputStream 转zip 就下载下载。

代码部分
通过templates 显示html
配置部分

spring:
  thymeleaf:
    prefix: classpath:/templates/
    suffix: .html

显示html

    @GetMapping()
    public String index() {
        return "index";
    }

文件放入 如图
[图片上传失败...(image-968815-1693273073409)]

然后进行提交操作

<h3 >pdf 转图片 </h3>
<form  th:action="@{/toImage}" th:method="post" enctype="multipart/form-data">
    <input name="file" accept="application/pdf" type="file"/>
    <input type="radio" name="page" value="one">单张
    <input type="radio" name="page" checked value="multiple">多张 <br>
    <br>
    <br>
    <input type="submit" value="转图片"><br>

</form>

然后是 toImage方法部分


    @PostMapping("/toImage")
    public void pdfToImage(@RequestParam("file") MultipartFile multipartFile, @RequestParam("page") String page, HttpServletResponse response) throws Exception {
            ....
            }
      

方法里面有两个参数,一个是图片,一个是页面参数。 page 可能会有one 和multiple ,默认是multiple 这个,用的html checked 方法即可。

设置
response.setCharacterEncoding("UTF-8");
response.setContentType("multipart/form-data");
response.setHeader("content-disposition", "attachment;filename=" + "2023.zip");
这个2023.zip 是下载的文件名字,主要的是中文会乱码,这个就不讲怎么解决了。前端去修改也是一样的。

里面方法解说

/**
     * @param multipartFile 文件
    * @param page one单页,multipled多页
     * @return
     */
    @PostMapping("/toImage")
    public void pdfToImage(@RequestParam("file") MultipartFile multipartFile, @RequestParam("page") String page, HttpServletResponse response) throws Exception {
        // 设置
        response.setCharacterEncoding("UTF-8");
        response.setContentType("multipart/form-data");
        response.setHeader("content-disposition", "attachment;filename=" + "2023.zip");
        ZipOutputStream zos = new ZipOutputStream(response.getOutputStream());

        // 获取统一的 文件夹名字 ,避免每次重复
        String uuId = UUID.randomUUID().toString();
        // 文件缓存的地方
        String dstImgFolder = "F:/spring";

        File fileFolder = new File(dstImgFolder);

        //如果文件夹不存在则创建
        if (!fileFolder.exists() && !fileFolder.isDirectory()) {
            fileFolder.mkdir();
        }

        try {
            // 将源文件转化到本地的
            File file11 = HelloPdf.multipartFileToFile(dstImgFolder + "/", multipartFile);

            String sourceFolder = dstImgFolder + "/" + uuId;
            File oldFile = new File(sourceFolder);

            // 这个是初始化 ,也写成功static 方法进行调用
            PDFTransformImage pdfTransformImage = new PDFTransformImage();

            // 返回来所有的图片
            List<File> fileList = pdfTransformImage.pdfToImage(file11, dstImgFolder, 150, uuId);

            if (fileList == null) {
                return;
            }

            // 单个图片时候处理
            if (ObjectUtil.equal("one", page)) {
                // 所有的文件路径
                List<String> list = new ArrayList<>();
                for (File file : fileList) {
                    list.add(file.getAbsolutePath());
                    System.out.println(file.getAbsoluteFile());
                }

                // 所有文件
                String[] objects = list.toArray(new String[]{});
                // 保存文件路径和文件名字
                String saveFile = sourceFolder + DateUtil.newSimpleFormat(DatePattern.PURE_DATETIME_PATTERN) + ".png";
                // 将多个文件转换为一张图片
                Image.merge(objects, "png", saveFile);
                File srcFile = new File(saveFile);
                // 最后 在打包 这个文件夹,然后下载
                compress(zos, srcFile, srcFile.getName() + "/");
            } else {

                // 多个图片处理
                File[] sourceFiles = oldFile.listFiles();
                if (null == sourceFiles || sourceFiles.length < 1) {
                    System.out.println("待压缩的文件目录:" + "里面不存在文件,无需压缩.");
                } else {
//                    多个文件都压缩到文件
                    // 压缩文件为主
                    for (int i = 0; i < sourceFiles.length; i++) {
                        File srcFile = sourceFiles[i];
                        if (srcFile.isDirectory()) {
                            File[] imageSourceFiles = srcFile.listFiles();
                            if (null == imageSourceFiles || imageSourceFiles.length < 1) {
                                continue;
                            }
                            for (File imageFile : imageSourceFiles) {
                                compress(zos, imageFile, srcFile.getName() + "/");
                            }
                        } else {
                            compress(zos, srcFile, "");
                        }
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            //关闭流
            try {
                if (null != zos) {
                    zos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
            // 最后删除本地的所有缓存文件
            if (fileFolder.exists() && fileFolder.isDirectory()) {
                deleteFolder(fileFolder);
            }

        }
    }

pdf 转 图片这样方法

/**
     * PDF文件转PNG图片,全部页数** @param PdfFilePath  pdf完整路径
     *
     * @param dstImgFolder 图片存放的文件夹
     * @param dpi          dpi越大转换后越清晰,相对转换速度越慢* @return 返回转换后图片集合list
     */
    public List<File> pdfToImage(File file, String dstImgFolder, int dpi, String uuId) {

//        File file = new File(PdfFilePath);//定义集合保存返回图片数据
        List<File> fileList = new ArrayList<File>();

        PDDocument pdDocument;
        try {
//            String imagePDFName = file.getName().substring(0, "0"); // 获取图片文件名
            String imgFolderPath = null;
            if (dstImgFolder.equals("")) {
                imgFolderPath = dstImgFolder + File.separator + uuId;// 获取图片存放的文件夹路径
            } else {
                imgFolderPath = dstImgFolder + File.separator + uuId;
            }
            if (createDirectory(imgFolderPath)) {
                pdDocument = PDDocument.load(file);
                PDFRenderer renderer = new PDFRenderer(pdDocument);
                /* dpi越大转换后越清晰,相对转换速度越慢 */
                PdfReader reader = new PdfReader(file.getAbsolutePath());
                System.out.println("pdf总共多少页-----" + reader.getNumberOfPages());
                StringBuilder imgFilePath = null;
                for (int i = 0; i < reader.getNumberOfPages(); i++) {
                    String imgFilePathPrefix = imgFolderPath + File.separator + file.getName();
                    System.out.println("imgFilePathPrefix=====" + imgFilePathPrefix);
                    imgFilePath = new StringBuilder();
                    imgFilePath.append(imgFilePathPrefix);
                    imgFilePath.append("-");
                    imgFilePath.append(i);
                    imgFilePath.append(".jpg");
                    File dstFile = new File(imgFilePath.toString());
                    BufferedImage image = renderer.renderImageWithDPI(i, dpi);
                    ImageIO.write(image, "png", dstFile);
                    fileList.add(dstFile);
                }
                System.out.println("PDF文档转PNG图片成功!");
                return fileList;
            } else {
                System.out.println("PDF文档转PNG图片失败:" + "创建" + imgFolderPath + "失败");
                return null;
            }
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }

    }

多张图片合并一张图片


public static boolean merge(String[] imgs, String type, String mergePic) {
        int dstHeight = 0;
        int dstWidth = 0;
        // 获取需要拼接的图片长度
        int len = imgs.length;
        // 判断长度是否大于0
        if (len < 1) {
            return false;
        }
        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();
                return false;
            }

            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;
        }

        // 合成图片像素
        System.out.println("宽度:" + dstWidth);
        System.out.println("高度:" + dstHeight);

        if (dstHeight < 1) {
            System.out.println("dstHeight < 1");
            return false;
        }
        // 生成新图片
        try {
            BufferedImage imageNew = new BufferedImage(dstWidth, dstHeight, BufferedImage.TYPE_INT_ARGB);
//            int width_i = 0;
            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 false;
        }
        return true;
    }

源码下载地址

下载地址

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,377评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,390评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,967评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,344评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,441评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,492评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,497评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,274评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,732评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,008评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,184评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,837评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,520评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,156评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,407评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,056评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,074评论 2 352

推荐阅读更多精彩内容