Re: [iText-questions] Mergin pdfs

2010-04-22 Thread jdhankins
I've modified your code a bit and have a question. I have a single page pdf with a form (attached as rider_release.pdf). In my database, I have 100's of entrants (first name, last name, etc..), each of which, need to be completed on the form in the rider_release file. I am trying to take the

Re: [iText-questions] Mergin pdfs

2010-04-22 Thread 1T3XT info
jdhankins wrote: I've modified your code a bit and have a question. What code? You didn't read the most documentation. I've attached the concatenatedPDF file so you can reference my output from the code below. Notice how all pages are empty. The first page still retained the form, while

[iText-questions] Mergin pdfs

2009-08-20 Thread marko[FIN]
Ho do i merge two pdfs from byte arrays with different page sizes? I have wrote the followin code, it merges them but the page sizes are the same. public static byte[] mergePdfs(byte[] firstPdf, byte[] lastPdf) ByteArrayOutputStream byteArrayOutputStream = null; byte[] mergedPdf =

Re: [iText-questions] Mergin pdfs

2009-08-20 Thread Paulo Soares
Use PdfCopy. Paulo - Original Message - From: marko[FIN] marko.huot...@gmail.com To: itext-questions@lists.sourceforge.net Sent: Thursday, August 20, 2009 10:16 AM Subject: [iText-questions] Mergin pdfs Ho do i merge two pdfs from byte arrays with different page sizes? I have wrote

Re: [iText-questions] Mergin pdfs

2009-08-20 Thread Ed M
marko, Here is a sample of code I have used. You can either return a ByteArrayOutputStream (os) or you can convert this ByteArrayOutputStream to ByteArray (os.toByteArray()). // begin sample code // public ByteArrayOutputStream concatByteArrays (byte[] doc1, byte[] doc2){ // or public