服务器之家

服务器之家 > 正文

java使用Abobe Acrobat DC生成模板

时间:2021-09-12 01:28     来源/作者:小码66

一、利用word生成一个文档转成pdf

java使用Abobe Acrobat DC生成模板

说明:转换成pdf格式

二、abobe acrobat dc图解

利用abobe acrobat dc打开pdf

步骤:文件 ---->创建------>创建表单----->选择文件(你转换成pdf文件)

这里是所要增加的文本域、图片域等功能按钮

java使用Abobe Acrobat DC生成模板

在你需要的位置增加你说要的功能完成之后进行保存

java使用Abobe Acrobat DC生成模板

三、java后台代码

环境maven

?
1
2
3
4
5
6
<dependency>
            <groupid>com.itextpdf</groupid>
            <artifactid>itext7-core</artifactid>
            <version>7.1.13</version>
            <type>pom</type>
        </dependency>

生成的模板文件放到适当的位置

java使用Abobe Acrobat DC生成模板

所需要生成新的pdf代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
public @responsebody object getfaceverificationpdf(gzfaceverification gzfaceverification, httpservletrequest request) throws ioexception {
        try (bytearrayoutputstream outputstream = new bytearrayoutputstream()) {
            try (pdfdocument document = new pdfdocument(new pdfreader(
                    new classpathresource("static/moban.pdf").getinputstream()), new pdfwriter(outputstream))) {
 
                    pdfacroform pdfacroform = pdfacroform.getacroform(document, true);
                    //对图片进行处理(如果不处理在模板中显示不出图片)
                    pdfformfield pdfformfield = pdfacroform.getfield("frontidcardurl");
                    inputstream is = new fileinputstream(new file(gzfaceverification.getfrontidcardurl()));
                    string str = base64.encodebytes(streamutil.inputstreamtoarray(is));
                    pdfformfield.setvalue(str);
                    pdfacroform.addfield(pdfformfield);
 
                    pdfformfield pdfformfield1 = pdfacroform.getfield("reverseidcardurl");
                    inputstream is1 = new fileinputstream(new file(gzfaceverification.getreverseidcardurl()));
                    string str1 = base64.encodebytes(streamutil.inputstreamtoarray(is1));
                    pdfformfield1.setvalue(str1);
                    pdfacroform.addfield(pdfformfield1);
 
                    pdfformfield pdfformfield2 = pdfacroform.getfield("photo");
                    inputstream is2 = new fileinputstream(new file(gzfaceverification.getphoto()));
                    string str2 = base64.encodebytes(streamutil.inputstreamtoarray(is2));
                    pdfformfield2.setvalue(str2);
                    pdfacroform.addfield(pdfformfield2);
 
                    pdfacroform.getfield("frontidcardurl").setvalue(gzfaceverification.getfrontidcardurl());
                    pdfacroform.getfield("reverseidcardurl").setvalue(gzfaceverification.getreverseidcardurl());
                    pdfacroform.getfield("photo").setvalue(gzfaceverification.getphoto());
                    pdfacroform.getfield("comparisonresults").setvalue(gzfaceverification.getcomparisonresults());
                    pdfacroform.getfield("createtime").setvalue(gzfaceverification.getcreatetime());
                    pdfacroform.flattenfields();
 
            }
            httpheaders httpheaders = new httpheaders();
            httpheaders.setcontenttype(mediatype.application_pdf);
            httpheaders.setcontentdispositionformdata("attachment", "test.pdf", charset.forname("utf-8"));
 
            return responseentity.ok().headers(httpheaders).body(outputstream.tobytearray());
        }
    }

到此这篇关于java使用abobe acrobat dc生成模板的文章就介绍到这了,更多相关abobe acrobat dc生成模板内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_41971605/article/details/115701174

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部