我有一個窗體,我已經在MS Word中創建,然後轉換爲PDF(窗體),然後我加載這在使用PDF閱讀器,然後我有一個壓模創建填寫字段,如果我想添加第二頁使用相同的模板(窗體)我如何做到這一點,並使用相同的信息填充一些字段itext AcroFields形式到第二頁,需要保持相同的模板
我已經設法與另一個新頁面。讀者可我怎麼戳信息到這個頁面作爲AcroFields將具有相同的名稱#
我這是怎麼實現的是:
stamper.insertPage(1,PageSize.A4);
PdfReader reader = new PdfReader("/soaprintjobs/templates/STOTemplate.pdf"); //reads the original pdf
PdfImportedPage page; //writes the new pdf to file
page = stamper.getImportedPage(reader,1); //retrieve the second page of the original pdf
PdfContentByte newPageContent = stamper.getUnderContent(1); //get the over content of the first page of the new pdf
newPageContent.addTemplate(page, 0,0);
謝謝
我有一個文檔有多個頁面,在每個頁面中有一個字段在所有頁面中都有相同的鍵。密鑰名稱是「abc」。但我無法爲第二頁和稍後頁面中的「abc」設置值。請建議我更好的選擇來實現這一點。 –