作者:鲁弗斯ll | 来源:互联网 | 2023-09-25 09:27
前言:
最近公司需求,通过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;