您好,登錄后才能下訂單哦!
java PDF添加圖層,支持多頁圖層添加,具體如下
代碼:
import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.util.List; import com.itextpdf.text.DocumentException; import com.itextpdf.text.Image; import com.itextpdf.text.pdf.PdfContentByte; import com.itextpdf.text.pdf.PdfReader; import com.itextpdf.text.pdf.PdfStamper; public class PdfUtils { /** * PDF添加圖層 * * @param srcPdf * 原PDF文件路徑 * @param distPdf * 合成PDF輸出路徑 * @param layerPathArr * 圖層路徑列表,圖層名稱需為數字(按照圖片名稱數字順序合成在PDF對應頁數上) * @return * @throws IOException * @throws DocumentException */ public static String markLocalImage42Dist(String srcPdf, String distPdf, List<String> layerPathArr) throws IOException, DocumentException { File srcPdfFile = new File(srcPdf); if (!srcPdfFile.exists()) { throw new IllegalArgumentException("找不到需要添加圖層的pdf文件"); } PdfReader reader = new PdfReader(srcPdf); int n = reader.getNumberOfPages(); // PDF頁數 PdfStamper stamp = new PdfStamper(reader, new FileOutputStream(distPdf)); PdfContentByte over; for (String layerPath : layerPathArr) { File layerFile = new File(layerPath); String currentPageNo = layerFile.getName().substring(0, layerFile.getName().lastIndexOf(".")); // 圖片名稱(對應頁數) boolean isNum = currentPageNo.matches("[0-9]+"); if (!isNum) { throw new IllegalArgumentException("圖層名稱是不是數字"); } Image img = Image.getInstance(layerPath); img.setAbsolutePosition(0, 0); if (n > 0 && n >= Integer.parseInt(currentPageNo)) { over = stamp.getOverContent(Integer.parseInt(currentPageNo)); over.addImage(img); } } stamp.close(); reader.close(); return distPdf; } }
測試:
public static void main(String[] args) throws IOException, DocumentException { List<String> imgUrlList = new ArrayList<>(); imgUrlList.add("D:/ts/testPDF/1.png"); //imgUrlList.add("D:/ts/testPDF/2.png"); imgUrlList.add("D:/ts/testPDF/3.png"); markLocalImage42Dist("D:/ts/testPDF/testPDF.pdf", "D:/ts/testPDF/testPDF2.pdf", imgUrlList); }
結果:
原PDF:
合成后PDF:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。