本文實例為大家分享了java在pdf模板的指定位置插入圖片的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)普洱,10余年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
java操作pdf有個非常好用的庫itextpdf,maven:
com.itextpdf itextpdf 5.5.6 com.itextpdf itext-asian 5.2.0
思路:
代碼
public static void main(String[] args) throws Exception { // 模板文件路徑 String templatePath = "template.pdf"; // 生成的文件路徑 String targetPath = "target.pdf"; // 書簽名 String fieldName = "field"; // 圖片路徑 String imagePath = "image.jpg"; // 讀取模板文件 InputStream input = new FileInputStream(new File(templatePath)); PdfReader reader = new PdfReader(input); PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(targetPath)); // 提取pdf中的表單 AcroFields form = stamper.getAcroFields(); form.addSubstitutionFont(BaseFont.createFont("STSong-Light","UniGB-UCS2-H", BaseFont.NOT_EMBEDDED)); // 通過域名獲取所在頁和坐標,左下角為起點 int pageNo = form.getFieldPositions(fieldName).get(0).page; Rectangle signRect = form.getFieldPositions(fieldName).get(0).position; float x = signRect.getLeft(); float y = signRect.getBottom(); // 讀圖片 Image image = Image.getInstance(imagePath); // 獲取操作的頁面 PdfContentByte under = stamper.getOverContent(pageNo); // 根據(jù)域的大小縮放圖片 image.scaleToFit(signRect.getWidth(), signRect.getHeight()); // 添加圖片 image.setAbsolutePosition(x, y); under.addImage(image); stamper.close(); reader.close(); }
參考
How to show an image at a text field position?
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。