Html 转pdf

将html格式的文件转为pdf文件

项目依赖jar 包

xml 复制代码
<dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itextpdf</artifactId>
            <version>5.5.11</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>html2pdf</artifactId>
            <version>4.0.3</version>
        </dependency>

静态文件html文件模板:

xml 复制代码
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8"/>
    <title>2</title>
    <style>
        /*这是将打印时的页面大小设置为A4大小,并保留好一定的边距 210×297mm*/
        /*@page {*/
        /*    size: 21cm 29.7cm;*/
        /*    font-size: 14pt;*/
        /*    color: black;*/
        /*    line-height: 1.4;*/
        /*    text-align: justify;*/
        /*    margin: 0;*/
        /*    padding: 0;*/
        /*}*/
        /*body {*/
        /*    font-family: FZLanTingHei-L-GBK;*/
        /*    width: 21cm;*/
        /*    height: 29.7cm;*/
        /*    margin: 0;*/
        /*    padding: 0;*/
        /*    overflow: hidden;*/
        /*}*/
        /*img{*/
        /*    width: 21cm;*/
        /*    height: 29.7cm;*/
        /*}*/
    </style>
</head>
<body>
<h1 th:text="${title}">Default Title</h1>
<p th:text="${content}">Default Content</p>
<div align="center">
    <img th:src="${imagePath}" alt="这是一张美丽的风景照片"/>

</div>
</body>
</html>

代码如下:

java 复制代码
public void generatePdf(HttpServletResponse response) throws IOException {
        // 将图片转换为Base64编码
//        byte[] imageBytes = Files.readAllBytes(Paths.get(imagePath));
//        String base64Image = Base64.getEncoder().encodeToString(imageBytes);
        // 动态数据
        Map<String, Object> data = new HashMap<>();
        data.put("title", "Hello, World!");
        data.put("content", "This is a dynamic content.");
        data.put("imagePath", imagePath); // 路径
        // 使用 Thymeleaf 渲染模板
        Context context = new Context();
        context.setVariables(data);
        String htmlContent = templateEngine.process("templates", context);

        try (FileOutputStream outputStream = new FileOutputStream(filePath)) {
            // 读取HTML模板
            HtmlConverter.convertToPdf(htmlContent, outputStream);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
相关推荐
MZWeiei11 分钟前
实现List接口的三类-ArrayList -Vector -LinkedList
java
怀旧66611 分钟前
Java List 集合
java·数据结构·后端·list·个人开发
听我对云说27 分钟前
Java语言程序设计 选填题知识点总结
java·开发语言
苹果酱056731 分钟前
浅谈vue3 和 vue2的区别
java·spring boot·毕业设计·layui·课程设计
forestsea1 小时前
【Java 解释器模式】实现高扩展性的医学专家诊断规则引擎
java·人工智能·设计模式·解释器模式
陈小于1 小时前
springboot集成shiro和前后端分离配置
java·spring boot·后端
不修×蝙蝠1 小时前
数据结构--数组实现栈和队列
java·数据结构·数组··队列
信息化未来1 小时前
odoo17 档案管理之翻译2
java·服务器·前端
清山博客1 小时前
Java将PDF保存为图片
java·开发语言·pdf
life10242 小时前
pdf文档动态插入文字水印,45度角,旋转倾斜,位于文档中央,多行水印可插入中文
java·pdf·水印