What's in myPdfPattern? Paulo
> -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Jérôme Leytier > Sent: Friday, June 01, 2007 3:58 PM > To: [email protected] > Subject: [iText-questions] StampReader,ZipOutputStream and > ServletOutputStream > > Hi, > > i'm generating PDF documents from a PDF document pattern, > passing it through a ZipOutStream. The ZipOutStream is passed through > the myServletOutputStream. > > The problem is : instanciating a new PdfReader ( i = 1 ), > i've got the exception : PDF header signature not found. > > Result : a ZIP file with only 1 file size : 0 bytes !!! > > What's going wrong ? Thx for your answer !!! > > My code : > > try { > ZipOutputStream zos = new ZipOutputStream( > myServletOutputStream ); > for ( int i = 0; i < myVector.size(); i++ ) { > myObject= (MyObject)myVector.get(i); > ze = new ZipEntry( "C_"+myObject.getNumero()+".pdf" ); > zos.putNextEntry(ze); > reader = new PdfReader(myPdfPattern); > stamp = new PdfStamper(reader, zos ); > stamp.getWriter().setCloseStream(false); > myForm = stamp.getAcroFields(); > [[.. code filling form ..]] > int npages = reader.getNumberOfPages(); > for ( int j = 0; j < npages; j++ ) > zos.write(reader.getPageContent(j+1)); > stamp.close(); > zos.closeEntry(); > } > zos.close(); > } catch (Exception e) { > e.getMessage(); > } Aviso Legal: Esta mensagem é destinada exclusivamente ao destinatário. Pode conter informação confidencial ou legalmente protegida. A incorrecta transmissão desta mensagem não significa a perca de confidencialidade. Se esta mensagem for recebida por engano, por favor envie-a de volta para o remetente e apague-a do seu sistema de imediato. É proibido a qualquer pessoa que não o destinatário de usar, revelar ou distribuir qualquer parte desta mensagem. Disclaimer: This message is destined exclusively to the intended receiver. It may contain confidential or legally protected information. The incorrect transmission of this message does not mean the loss of its confidentiality. If this message is received by mistake, please send it back to the sender and delete it from your system immediately. It is forbidden to any person who is not the intended receiver to use, distribute or copy any part of this message. ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://itext.ugent.be/itext-in-action/
