Hi,
I’m using iText to fill fields of a PDF template (prepared with Acrobat Professional).
I’m using the following method:
PdfReader pdf = new PdfReader("c:/PDFTest.pdf");
PdfStamper stp = new PdfStamper(pdf, new FileOutputStream("c:/test_output.pdf"));
stp.getAcroFields().setField("MyTest", "New Text");
stp.close();
Now I have to insert a table on the middle of the document with a variable length.
The text that comes after the table should be moved dynamically with the length of the table.
Unfortunately I haven’t found an example on how to do this.
Is it possible to do this with iText or someone has an idea of how to implement it.
Regards
Paul