beppe costagliola wrote:

>I'm using this code to concatenate PDF:
>
>....
>PdfCopyFields copy = new PdfCopyFields(new
>FileOutputStream(outFile));
>....
>PdfReader reader = new PdfReader(args[f]);
>copy.addDocument(reader);
>....
>
>It it possible to add some text while adding documents?
>  
>
No, not with PdfCopy. You need PdfStamper to add text.
In other words: you have to concatenate the PDFs in multiple passes.
br,
Bruno


_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to