您好,登錄后才能下訂單哦!
本文實(shí)例為大家分享了java通過(guò)PDF模板填寫(xiě)PDF表單的具體代碼,包括圖片,供大家參考,具體內(nèi)容如下
需要用到的java包:
itext.jar、iTextAsian.jar的JAR包。這個(gè)包里面定義了與中文輸出相關(guān)的一些文件。
編寫(xiě)的表單如下:
import java.io.ByteArrayOutputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.HashMap; import java.util.Map; import com.itextpdf.text.DocumentException; import com.itextpdf.text.Image; import com.itextpdf.text.Rectangle; import com.itextpdf.text.pdf.AcroFields; import com.itextpdf.text.pdf.BaseFont; import com.itextpdf.text.pdf.PdfContentByte; import com.itextpdf.text.pdf.PdfReader; import com.itextpdf.text.pdf.PdfStamper; /** * pdf工具類 * @author MOSHUNWEI * @since 2018-02-01 */ public class PDFUtil { /** * 根據(jù)模板生成pdf * @param data Map(String,Object) * @return */ public static boolean createPDF(String path,Map<String, Object> data) { PdfReader reader = null; AcroFields s = null; PdfStamper ps = null; ByteArrayOutputStream bos = null; try { reader = new PdfReader("D:\\test.pdf"); bos = new ByteArrayOutputStream(); ps = new PdfStamper(reader, bos); s = ps.getAcroFields(); /** * 使用中文字體 使用 AcroFields填充值的不需要在程序中設(shè)置字體,在模板文件中設(shè)置字體為中文字體 Adobe 宋體 std L */ BaseFont bfChinese = BaseFont.createFont("STSongStd-Light", "UniGB-UCS2-H", false); /** * 設(shè)置編碼格式 */ s.addSubstitutionFont(bfChinese); // 遍歷data 給pdf表單表格賦值 for (String key : data.keySet()) { s.setField(key,data.get(key).toString()); } // 如果為false那么生成的PDF文件還能編輯,一定要設(shè)為true ps.setFormFlattening(true); /** * 添加圖片 */ String imgpath="D:/n5.jpg"; int pageNo = s.getFieldPositions("img").get(0).page; Rectangle signRect = s.getFieldPositions("img").get(0).position; float x = signRect.getLeft(); float y = signRect.getBottom(); // 讀圖片 Image image = Image.getInstance(imgpath); // 獲取操作的頁(yè)面 PdfContentByte under = ps.getOverContent(pageNo); // 根據(jù)域的大小縮放圖片 image.scaleToFit(signRect.getWidth(), signRect.getHeight()); // 添加圖片 image.setAbsolutePosition(x, y); under.addImage(image); @SuppressWarnings("resource") FileOutputStream fos = new FileOutputStream("d:\\shouju_fb.pdf"); fos.write(bos.toByteArray()); return true; } catch (IOException | DocumentException e) { System.out.println("讀取文件異常"); e.printStackTrace(); return false; }finally { try { bos.close(); ps.close(); reader.close(); } catch (IOException | DocumentException e) { System.out.println("關(guān)閉流異常"); e.printStackTrace(); } } } public static void main(String[] args) { Map<String, Object> data = new HashMap<String, Object>(); data.put("id", "12312321"); data.put("name", "小帥哥"); data.put("sex", "男"); data.put("age", "21"); PDFUtil.createPDF("D:/n5.jpg",data); } }
還有相應(yīng)的編輯pdf表單的工具,默認(rèn)用Adobe Acrobat。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。