[iText-questions] Replace image with visible signatue

2011-04-11 Thread resif_trebor
Hi, I need replace some mark object with visible signature. I can place visible signatue but i dont know how to find the position of the mark object. It would be image or some specified text placed to rtf template. (Users're finishing the document and converting it to pdf. Then users signing

Re: [iText-questions] possible bug in Rectangle.rotate?

2011-04-11 Thread 1T3XT BVBA
Op 11/04/2011 7:23, Raj Nagappan schreef: Hi, I came across this problem while trying to work with a PDF that had uneven custom cropping on each side of the page. The rotate function does not give the right offsets, and the top and bottom margins ended up getting flipped. The rotate

Re: [iText-questions] Replace image with visible signatue

2011-04-11 Thread 1T3XT BVBA
Hello, you have posted a mail to itext-questions@lists.sourceforge.net but you weren't subscribed. You are receiving this answer because I've added your mail address in Bcc: I will do this only once! Further answers will be sent to the mailing-list only (you won't receive them if you don't

Re: [iText-questions] DigitalSignature+ExpiryDate+in XFA Forms

2011-04-11 Thread Andreas Kuehne
Hold on, your on the right track ! You'll have to cast the certificate to a X509Certificate. This offers the getNotAfter() method ... Greetings Andreas - original Nachricht Betreff: Re: [iText-questions] DigitalSignature+ExpiryDate+in XFA Forms Gesendet: Mo, 11. Apr 2011 Von:

Re: [iText-questions] Problems using skipFirstHeader for atabledisplayed on a new page.

2011-04-11 Thread Palmer, Richard
I was hoping to use the setSkipFirstHeader() method to display a 'continued - from last page' header row when a table is split across pages. ( as suggested in the Manning - itext In Action 2nd edition book section 4.3.1.) The pdf document that I'm producing has several tables of variable

Re: [iText-questions] Highlighting text

2011-04-11 Thread Lasse L
Thanks Mark, Wow! I just realized that my project is using the ancient 2.0.3 version of iText. So if anyone is trying (and failing) to compile my PoC above, that is why. I'll make a new PoC using 5.0.6 with your suggestion and post it. It may be useful for somebody. Examples of

[iText-questions] question about adding a table to the document

2011-04-11 Thread King Goldman
Hi All, I read about adding the tables to the document in the second edition of the book. But if I were to add a table that first writes to the left half of the document and then writes the data to the second half of the document as shown below, how can I achieve this result. Can somebody guide

Re: [iText-questions] question about adding a table to the document

2011-04-11 Thread Jason Berk
I believe you could either use CollumnText or, if you really want to keep it simple with doc.add( ), you'd have to create an outer table, and nest your two tables inside itthen add that outer table to the doc. Don't forget to make your padding 0 on the outer table. Make sense?

Re: [iText-questions] question about adding a table to the document

2011-04-11 Thread King Goldman
Outer table and nest two tables? I have no clue about this. Can you give me an example? On Mon, Apr 11, 2011 at 3:51 PM, Jason Berk jb...@purdueefcu.com wrote: I believe you could either use CollumnText or, if you really want to keep it simple with doc.add( ), you’d have to create an outer

[iText-questions] Problem of multi-rowspan

2011-04-11 Thread Colin Cheng
Hi, When the cell with multi-row span contains long text, the table will not be rendered correctly. Thanks for any advice. Here is the code: this.doc = new Document(PageSize.A4); this.writer = PdfWriter.getInstance(doc, new FileOutputStream(test.pdf)); doc.open();