Re: [iText-questions] images and templates

2005-08-17 Thread Ceily
THANK YOU PAULO!!! I have been hitting my head on this for so long. Here is the method with your recommended change - which works like a charm. Thanks, Ceily ~ public void render(OutputStream os) throws IOException { ByteArrayOutputStream bos = nul

Re: [iText-questions] Question About Picture and Acro Form

2005-08-17 Thread Paulo Soares
Use AcroFields.getFieldPositions(). - Original Message - From: "daniel ardiwinata" <[EMAIL PROTECTED]> To: Sent: Wednesday, August 17, 2005 6:16 PM Subject: [iText-questions] Question About Picture and Acro Form I have PDF with acro form in place through out PDF document! I would like

[iText-questions] Question About Picture and Acro Form

2005-08-17 Thread daniel ardiwinata
I have PDF with acro form in place through out PDF document! I would like to put a "Signature picture" in JPEG format to one of this acro form location! Is it possible to do this? I try to look at the messege posted by Ceily, but It was different because she needs an absolute position while I need

RE: [iText-questions] How to add blank page into a pdf previously created

2005-08-17 Thread Paulo Soares
PdfStamper.insertPage() > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Juan Sanchez > Sent: Wednesday, August 17, 2005 5:22 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] How to add blank page into a pdf > previous

RE: [iText-questions] Table with nested List

2005-08-17 Thread Paulo Soares
Use PdfPCell.addElement() > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Frank Mix > Sent: Wednesday, August 17, 2005 4:24 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Table with nested List > > Hi, > > if I put

[iText-questions] Table with nested List

2005-08-17 Thread Frank Mix
Hi, if I put a (numbered) List into a table, I get ItemAItemBItemCItemD . The same List outside a table results in 1. ItemA 2. ItemB 3. ItemC 4. ItemD ! What I'm doing wrong? Regards Frank --- SF.Net email is Sponsored by t

[iText-questions] Re: Alignment of images in table's cell with text in HTMLWorker (HTML-to-PDF)

2005-08-17 Thread Sergey Vlasov
Paulo Soares consiste.pt> writes: > > It's not that bad. Place your image and use a ColumnText with irregular > columns, there are examples in the tutorial. HTHLWorker has nothing to do > with this, of course. > > - Original Message - > From: "Philip Newton" gmail.com> > To: "Sergey V

[iText-questions] How to add blank page into a pdf previously created

2005-08-17 Thread Juan Sanchez
Hi to all How can i add a blank page at the end of the existent pdf file ? sample distributed only add new pages in a new document. Best regards. _ Don't just search. Find. Check out the new MSN Search! http://search.msn.com/

Re: [iText-questions] support

2005-08-17 Thread Philip Newton
On 8/17/05, osamaao <[EMAIL PROTECTED]> wrote: > > Hello, > > I would like to use the iText PDF library in a commercial product and I > would like to know what kind of support I can get. > > Do you sell support? And in case I had a critical error, to whom I can > refer? Please see the FAQ:

RE: [iText-questions] support

2005-08-17 Thread Paulo Soares
http://www.lowagie.com/iText/faq.html#support > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of osamaao > Sent: Wednesday, August 17, 2005 4:05 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] support > > Hello, > > >

RE: [iText-questions] question

2005-08-17 Thread Paulo Soares
Ah! PdfReader reader = new PdfReader("my_pdf.pdf"); PdfWriter writer = ...; PdfTemplate t = writer.getImportedPage(reader, 1); Image img = Image.getInstance(t); Use img as any other image. > -Original Message- > From: Patrick Janssen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 1

[iText-questions] support

2005-08-17 Thread osamaao
Hello,   I would like to use the iText PDF library in a commercial product and I would like to know what kind of support I can get.   Do you sell support? And in case I had a critical error, to whom I can refer?     Best Regards Osama AbuObeid Advanced Web Solutions Damascus, Sy

[iText-questions] Add signatures in a existing blank signature

2005-08-17 Thread Juan Sanchez
Hi Paulo. Finally I create a PDF with signature and Adobe can validate it correctly, but if I push over Signature Properties appear a window with the nextmessage : Certiifcate Security Alert Acrobat Error Bad parameter and the information wi

[iText-questions] Unexpected return

2005-08-17 Thread yuanjk
About 3 year ago, I had wrote a tools to genarate pdf by using iText V0.99, which is a web app and was used only by myself. Recentlly some body else began to use it, then tell me some bugs. One of them is that , when double client request the server at the same time, can not get the right pdf fil

RE: [iText-questions] How to remove XMP Metadata inside Stamper?

2005-08-17 Thread Paulo Soares
There are examples in the mailing list to get/set the metadata in the catalog and for other objects it's the same. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, August 17, 2005 10:21 AM > To: itext-questions

Re: [iText-questions] How to remove XMP Metadata inside Stamper?

2005-08-17 Thread listservs
Paulo, It would be very helpful if you could provide examples (as I've not been able to find any elsewhere) of how easy it is when you say... "It's very easy to set/get the XMP metadata, the problem is what to put there." Thanks! Tony Bull -

Re: [iText-questions] question

2005-08-17 Thread Paulo Soares
If you use that PdfPCell conntructor with false then the cell width must be at least 160 + 2 * 10 = 180 to show the image. - Original Message - From: "Patrick Janssen" <[EMAIL PROTECTED]> To: "'Paulo Soares'" <[EMAIL PROTECTED]> Sent: Wednesday, August 17, 2005 6:13 AM Subject: RE: [iText

Re: [iText-questions] images and templates

2005-08-17 Thread Paulo Soares
Use PdfStamper.getOverContent() or PdfStamper.getUnderContent(). - Original Message - From: "Ceily" <[EMAIL PROTECTED]> To: "Paulo Soares" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, August 17, 2005 12:51 AM Subject: Re: [iText-questions] images and templates > Here's the method (below).