Hi,

 

I'm currently merging 2 pdf's using the code sample ConcatenateForm.java

public static void main(String[] args) {

                        try {

                                    PdfReader reader1 = new
PdfReader("1.pdf");

                                    PdfReader reader2 = new
PdfReader("2.pdf");

                                    PdfCopyFields copy = new
PdfCopyFields(new FileOutputStream("concatenatedforms.pdf"));

                                    copy.addDocument(reader1);

                                    copy.addDocument(reader2);

                                    copy.close();

                        } catch (Exception e) {

                                    e.printStackTrace();

                        }

            }

 

I noticed that printing the merged file straightaway doesn't print the
form data in the 2nd

Page. You need to scroll to the 2nd page and print thereafter to print
the form data in the 2nd

Page.

 

Any clues?

 

Thanks!

 

Leo

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

Buy the iText book: http://www.1t3xt.com/docs/book.php

Reply via email to