[iText-questions] DottedLineSeparator and borders

2009-09-03 Thread Mathias Nilsson
Hi, When using the DottedLineSeparator I get a dotted border around other tables that is not defined dotted. public void onRender(com.lowagie.text.Paragraph paragraph) { DottedLineSeparator sep = new DottedLineSeparator(); sep.setAlignment( Elemen

Re: [iText-questions] Question about iText

2009-09-03 Thread mister bean
iText to generate data-based PDFs, such as reports, you provide the data. So, you extract it from Access and pass it to iText. iText does not extract the data for you. Valerie Butts wrote: > > Hello, > > > > I would like to know if iText would work with a Microsoft Access > application.

Re: [iText-questions] Where am I in the text I am writing out?

2009-09-03 Thread mister bean
Established that there is no way to do this. However, BL suggests using the .go() method with the addition of every element, so that its effect on the column of the addition of each element can be determined. This solves most of the need to know where the column breaks. ---mr. bean mister bean

Re: [iText-questions] Question about iText

2009-09-03 Thread wasegraves
Valerie,   Please put the subject of your query in the subject of your query. You'll find that trying to formulate the proper subject for the forum will help you to answer your own question.   2. IMO, your question is not really an iText question. It's more like "How do I create a connection to an

[iText-questions] Question about iText

2009-09-03 Thread Valerie Butts
Hello, I would like to know if iText would work with a Microsoft Access application. I would like to take data entered into various tables of a database and fill in existing pdf documents. iText was recommended to me by a web developer I know but I not sure if it would work for my project.

[iText-questions] Page Number problem when table ends at the complete end of the page

2009-09-03 Thread chennupati
I am trying to display mutiple tables in a single PDF and display page X of Y at the end of each page. X, Y should reset for every new table(Basically every new table should start with a new page.) Each table can vary and span accross multiple pages.I am ChapterAutoNumber, PdfPTable & custome even

Re: [iText-questions] Resetting page numbering in RTF

2009-09-03 Thread Mirco Piccin
HI, maybe i'm wrong about that, but you could convert the RtfPageNumber to integer and than -1. In this way rtf should have page 2 numbered as "1", and so on. Hope this helps. Regards M On Thu, Sep 3, 2009 at 5:34 PM, Emilio Federici < emilio.feder...@hydroingea.it> wrote: > RtfPageNumber --

Re: [iText-questions] PdfStamper and large PDFs

2009-09-03 Thread Paulo Soares
Use the constructor PdfReader(RandomAccessFileOrArray raf, byte[] ownerPassword). Paulo > -Original Message- > From: merco [mailto:d.merca...@sygest.it] > Sent: Thursday, September 03, 2009 3:16 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] PdfStamper and l

[iText-questions] Resetting page numbering in RTF

2009-09-03 Thread Emilio Federici
Hello, I'm writing an application that produces a RTF report. The first page of this report is just a cover so it should not be counted in page numbering. I can't figure a way to do this: i currently use a RtfHeaderFooter made of a Table with a Cell containing a RtfPageNumber; the cover and the

Re: [iText-questions] Need Help! Self Signed external siganture example fails

2009-09-03 Thread mamueller
I have checked the certificate. It seems to be RSA, 1024 System.out.println(chain[0].getPublicKey()); prints: Sun RSA public key, 1024 bits modulus: 97230408356031235204215703559799504011052133827156008351259515758061051903247576405647097468084878026505020823474035639218968458220942692379218

[iText-questions] PdfPTable fill the whole page

2009-09-03 Thread marcolf
Hi, i have to create a PDF that contain a dynamic pdfptable and other object. The pdfptable can fill several pages. When the pdfpTable finished to write its rows, On the last page (that i don't know) I want to fill the whole page and insert a small pdfptable as footer. Example: first page row 1

[iText-questions] PdfStamper and large PDFs

2009-09-03 Thread merco
Hi. I have a very big PDF containig about 3600pages (it's about 195Mb before optimization). When i try to open it with _Dest = New PdfStamper(_reader, New FileStream(_tofile, FileMode.CreateNew), PdfWriter.VERSION_1_4) _Dest.Writer.SetPdfVersion(New iTextSharp.text.pdf.PdfName(PdfWriter.VERSION

Re: [iText-questions] iTextAsian.jar does not handle Dutch character

2009-09-03 Thread Paulo Soares
One font doesn't have to fit all. You may use FontSelector to automaticaly choose the font or you may use the font arialuni.ttf that has all the characters. Paulo > -Original Message- > From: Bin Liu [mailto:b...@novell.com] > Sent: Wednesday, September 02, 2009 2:11 AM > To: itext-que

Re: [iText-questions] Need Help! Self Signed external siganture example fails

2009-09-03 Thread Paulo Soares
Check that your certificate is RSA 1024 bit. Paulo > -Original Message- > From: Manfred Müller [mailto:mamuel...@directbox.com] > Sent: Thursday, September 03, 2009 12:32 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Need Help! Self Signed external > sigan

[iText-questions] Need Help! Self Signed external siganture example fails

2009-09-03 Thread Manfred Müller
Hello, i have tried to run the example with an external signature in Self Sign Mode, like described on: (http://itextpdf.sourceforge.net/howtosign.html#signextstd) see code below at the end of the mail. The sign process works without errors, but if i open the signed PDF document with Acrobat r

Re: [iText-questions] How to differentiate xfa from pdf

2009-09-03 Thread Hubert Felber
Hi, Well, then I have to guess: if (reader.getAcroFields().getXfa().getDomDocument() != null) { // must be xfa } Hubert >>> "Hubert Felber" 01.09.2009 19:30 >>> Hi, How can I differentiate a regular PDF built with Adobe Writer from a XFA built with LiveCycle Designer with iText? T