热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Java使用iTextPDF通过模板填充文本域和图片后生成pdf

前言:最近公司需求,通过pdf模板填充其中的文本域、贴照片然后输出pdf文档。经过一番研究。整理一个工具类分享给大家。开始第一步:需

前言:

最近公司需求,通过pdf模板填充其中的文本域、贴照片然后输出pdf文档。经过一番研究。整理一个工具类分享给大家。

=================开始====================

第一步:需要使用工具《Adobe Acrobat DC》制作pdf模板(模板里制作文本域)

此软件网上可以自行下载,不过基本都是收费的。下面我提供百度云下载连接

链接:https://pan.baidu.com/s/1Bmrdo7-mWl61oDsqJPIwUQ
提取码:4dfl

安装软件后,制作 PDF 表单域,这里不再赘述,自行百度吧。

 

第二步:开始编写 Java 代码

引入pom的jar

com.itextpdfitextpdf5.5.10com.itextpdfitext-asian5.2.0

下面贴出主要代码

package gov.zhbs.utils;import com.google.gson.Gson;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Image;
import com.itextpdf.text.pdf.*;
import org.apache.commons.collections4.MapUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Logger;import java.io.*;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;public class SealCreatePDFUtil2 {private static Logger logger &#61; Logger.getLogger(SealCreatePDFUtil2.class);// 利用模板生成pdfpublic static void createPdf(InputStream templateInputStream,OutputStream newPdfOutputStream,InputStream imgInputStream,Map parametersMap,float img_X_position,float img_Y_position) {PdfReader pdfReader;ByteArrayOutputStream byteArrayOutputStream;PdfStamper pdfStamper;try {pdfReader &#61; new PdfReader(templateInputStream);// 读取pdf模板byteArrayOutputStream &#61; new ByteArrayOutputStream();pdfStamper &#61; new PdfStamper(pdfReader, byteArrayOutputStream);AcroFields acroFields &#61; pdfStamper.getAcroFields();// 根据填充内容长度设置字体大小if(MapUtils.isNotEmpty(parametersMap)){BaseFont baseFont &#61; BaseFont.createFont( "STSong-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);// 循环参数mapfor(String key:parametersMap.keySet()){acroFields.setField(key,parametersMap.get(key));// 将map中的参数设置到pdf中。 acroFields.setFieldProperty(key,"textfont",baseFont,null); // 为每一个表单域 设置字体}for(String key:parametersMap.keySet()){if(StringUtils.isNoneBlank(key,parametersMap.get(key))){int ilen &#61; parametersMap.get(key).toString().length();logger.debug("key: " &#43; key&#43;", 长度&#xff1a; " &#43; ilen);if(StringUtils.equalsIgnoreCase("syzn_hjdz",key) // 生育子女户籍地址|| StringUtils.equalsIgnoreCase("syzn_xjzdz",key) // 生育子女现居住地址){setFontSizeByLength_1(ilen,key,acroFields);}else if(StringUtils.equalsIgnoreCase("bz",key) || StringUtils.equalsIgnoreCase("hjdz",key)// 户籍地址|| StringUtils.equalsIgnoreCase("jtzz",key)// 家庭住址){setFontSizeByLength_3(ilen,key,acroFields);}else{setFontSizeByLength_2(ilen,key,acroFields);}}}}/*** 如果实参传入了&#xff0c;图片和坐标值&#xff0c;则添加图片*/byte[] bytes &#61; toByteArray(imgInputStream);if(bytes !&#61; null && img_X_position > 0 && img_Y_position > 0){Image image &#61; Image.getInstance(bytes);image.setAbsolutePosition(img_X_position,img_Y_position);PdfContentByte underContent &#61; pdfStamper.getOverContent(1);// getOverContent 图片会覆盖在文字上层image.scaleAbsolute(80,120);// 指定图片的宽高underContent.addImage(image);}pdfStamper.setFormFlattening(true);// 如果为false那么生成的PDF文件还能编辑&#xff0c;一定要设为truepdfStamper.close();Document document &#61; new Document();PdfCopy pdfCopy &#61; new PdfCopy(document, newPdfOutputStream);document.open();PdfImportedPage importPage &#61; pdfCopy.getImportedPage(new PdfReader(byteArrayOutputStream.toByteArray()), 1);pdfCopy.addPage(importPage);document.close();} catch (IOException e) {e.printStackTrace();} catch (DocumentException e) {e.printStackTrace();}}public static Map initPdfParametersMap(){Map parametersMap&#61;new HashMap();parametersMap.put("sqrxm", "李四");// 申请人姓名parametersMap.put("xb", "男");return parametersMap;}/*** InputStream 转 byte[]* &#64;param input* &#64;return*/public static byte[] toByteArray(InputStream input){if(input &#61;&#61; null){return null;}ByteArrayOutputStream output &#61; new ByteArrayOutputStream();byte[] buffer &#61; new byte[4096];int n &#61; 0;while (true) {try {if (!(-1 !&#61; (n &#61; input.read(buffer)))) break;} catch (IOException e) {e.printStackTrace();}output.write(buffer, 0, n);}return output.toByteArray();}/*** 根据内容长度设置字体大小&#xff0c;* 本方法适合 《短》 的文本域* &#64;param iLength* &#64;param key* &#64;param acroFields*/public static void setFontSizeByLength_1(int iLength,String key,AcroFields acroFields){if(iLength > 0 && iLength <5){acroFields.setFieldProperty(key, "textsize", new Float(12), null);} else if(iLength >&#61; 5 && iLength <10){acroFields.setFieldProperty(key, "textsize", new Float(10), null);}else if(iLength >&#61; 15 && iLength <&#61; 20){acroFields.setFieldProperty(key, "textsize", new Float(8), null);}else if(iLength > 20){acroFields.setFieldProperty(key, "textsize", new Float(7), null);}}/*** 根据内容长度设置字体大小&#xff0c;* 本方法适合 《中》 的文本域* &#64;param iLength* &#64;param key* &#64;param acroFields*/public static void setFontSizeByLength_2(int iLength,String key,AcroFields acroFields){if(iLength > 0 && iLength <15){acroFields.setFieldProperty(key, "textsize", new Float(12), null);} else if(iLength >&#61; 15 && iLength <30){acroFields.setFieldProperty(key, "textsize", new Float(10), null);}else if(iLength >&#61; 35 && iLength <&#61; 50){acroFields.setFieldProperty(key, "textsize", new Float(7), null);}else if(iLength > 50){acroFields.setFieldProperty(key, "textsize", new Float(6), null);}}/*** 根据内容长度设置字体大小&#xff0c;* 本方法适合 《长》 的文本域* &#64;param iLength* &#64;param key* &#64;param acroFields*/public static void setFontSizeByLength_3(int iLength,String key,AcroFields acroFields){if(iLength > 0 && iLength <20){acroFields.setFieldProperty(key, "textsize", new Float(12), null);} else if(iLength >&#61; 20 && iLength <50){acroFields.setFieldProperty(key, "textsize", new Float(10), null);}else if(iLength >&#61; 50 && iLength <&#61; 100){acroFields.setFieldProperty(key, "textsize", new Float(7), null);}else if(iLength > 100){acroFields.setFieldProperty(key, "textsize", new Float(6), null);}}}

 

下面编写主函数进行测试

//测试public static void main(String[] args) throws Exception {Map parametersMap &#61; initPdfParametersMap();logger.debug(new Gson().toJson(parametersMap));// 模板路径String templatePath &#61; "d:\\aaaa\\定制表单模板.pdf";InputStream templateInputStream &#61; new FileInputStream(new File(templatePath));String newPDFPath &#61;"d:\\aaaa\\新建的-"&#43; new Date().getTime() &#43;".pdf";OutputStream newPdfOutputStream &#61; new FileOutputStream(new File(newPDFPath));// 图片路径String imagePath &#61; "d:\\aaaa\\登记照.png";InputStream imgInputStream &#61; new FileInputStream(new File(imagePath));createPdf(templateInputStream,newPdfOutputStream,imgInputStream,parametersMap,478,632);}

 

具体使用方法&#xff0c;我在代码里写了很多注释。

下面贴出 itextpdf api文档

pdf 文件操作&#xff08;iText API&#xff09;文档

https://www.coderanch.com/how-to/javadoc/itext-2.1.7/com/lowagie/text/pdf/PdfStamper.html

 

 

原创不易&#xff0c;谢谢支持&#xff01;&#xff01;&#xff01;

 

 


推荐阅读
  • 本文详细探讨了在Java中如何将图像对象转换为文件和字节数组(Byte[])的技术。虽然网络上存在大量相关资料,但实际操作时仍需注意细节。本文通过使用JMSL 4.0库中的图表对象作为示例,提供了一种实用的方法。 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • JUnit下的测试和suite
    nsitionalENhttp:www.w3.orgTRxhtml1DTDxhtml1-transitional.dtd ... [详细]
  • 本文将详细介绍如何使用Java编程语言生成指定数量的不重复随机数,包括具体的实现方法和代码示例。适合初学者和有一定基础的开发者参考。 ... [详细]
  • 问题场景用Java进行web开发过程当中,当遇到很多很多个字段的实体时,最苦恼的莫过于编辑字段的查看和修改界面,发现2个页面存在很多重复信息,能不能写一遍?有没有轮子用都不如自己造。解决方式笔者根据自 ... [详细]
  • spring boot使用jetty无法启动 ... [详细]
  • 本文探讨了如何通过Service Locator模式来简化和优化在B/S架构中的服务命名访问,特别是对于需要频繁访问的服务,如JNDI和XMLNS。该模式通过缓存机制减少了重复查找的成本,并提供了对多种服务的统一访问接口。 ... [详细]
  • Maven + Spring + MyBatis + MySQL 环境搭建与实例解析
    本文详细介绍如何使用MySQL数据库进行环境搭建,包括创建数据库表并插入示例数据。随后,逐步指导如何配置Maven项目,整合Spring框架与MyBatis,实现高效的数据访问。 ... [详细]
  • 使用TabActivity实现Android顶部选项卡功能
    本文介绍如何通过继承TabActivity来创建Android应用中的顶部选项卡。通过简单的步骤,您可以轻松地添加多个选项卡,并实现基本的界面切换功能。 ... [详细]
  • Beetl是一款先进的Java模板引擎,以其丰富的功能、直观的语法、卓越的性能和易于维护的特点著称。它不仅适用于高响应需求的大型网站,也适合功能复杂的CMS管理系统,提供了一种全新的模板开发体验。 ... [详细]
  • 一、Advice执行顺序二、Advice在同一个Aspect中三、Advice在不同的Aspect中一、Advice执行顺序如果多个Advice和同一个JointPoint连接& ... [详细]
  • Android与JUnit集成测试实践
    本文探讨了如何在Android项目中集成JUnit进行单元测试,并详细介绍了修改AndroidManifest.xml文件以支持测试的方法。 ... [详细]
  • flea,frame,db,使用,之 ... [详细]
  • Android 中的布局方式之线性布局
    nsitionalENhttp:www.w3.orgTRxhtml1DTDxhtml1-transitional.dtd ... [详细]
  • 本文深入探讨了Go语言中的接口型函数,通过实例分析其灵活性和强大功能,帮助开发者更好地理解和运用这一特性。 ... [详细]
author-avatar
鲁弗斯ll
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有