[iText-questions] Add content to copied pdf

2003-01-09 Thread KuMi
Hello all,   It seems to me that additional content cannot be added to copied pdf with PdfCopy.java. Is it possible?   KuMi

[iText-questions] Underlined font

2003-01-09 Thread Kenny G. Dubuisson, Jr.
How do I get a BaseFont that is underlined? I looked all through the Java docs and didn't see it mentioned. What I want is TIMES_ROMAN underlined. Thanks, Kenny --- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + Lin

Re: [iText-questions] getPageNumber() always returns zero

2003-01-09 Thread Matt Benson
Bruno, maybe this one should go in the FAQ. You have to ask the Writer for the page number, because it could vary from one Writer to the next and so does not apply to the Document itself. This does give rise to the question whether Document should have such a method at all. What is the reason fo

[iText-questions] getPageNumber() always returns zero

2003-01-09 Thread John L. Lowenthal
Hello. I am trying to use the Document.getPageNumber() method to insert the current page number into text throughout my pdf. However, the method always returns a zero. This is especially confusing because the footer shows the page number fine. Any ideas? Thanks-John ---

Re: [iText-questions] space between tables

2003-01-09 Thread Matt Benson
PdfPTable was created so that you could have precisely-positioned tables. -Matt --- [EMAIL PROTECTED] wrote: > > Hallo, > > I use iText to create table. The space between > different tables is too large. > Is anyone know how to control the space between two > tables. > > thank you for your he

[iText-questions] space between tables

2003-01-09 Thread junyan.meng
Hallo, I use iText to create table. The space between different tables is too large. Is anyone know how to control the space between two tables. thank you for your help! regards Junyan Meng --- This SF.NET email is sponsored by: SourceForge

[iText-questions] iText Fonts

2003-01-09 Thread Dhanraj, Winston
Title: iText Fonts Hi, I'm using the "Custom Tags" approach with an XML data file and an XML Tag file, as described in chapter 7 of the tutorial on iText, to generate pdf, html and rtf files. I've managed to do some very neat things with the approach, but need help on supporting various fon

Re: [iText-questions] Indenting a Header!

2003-01-09 Thread John L. Lowenthal
Sorry for the double send on the previous email... The posted solution only fixes half my problem. It aligns fine now, but I still have the problem that I can't indent the header. Is there anything I can do about this? Thanks. -John > Quoting "John L. Lowenthal" <[EMAIL PROTECTED]>: > > remove:

[iText-questions] Problems with nested tables

2003-01-09 Thread Montagni Daniele
Title: Problems with nested tables I have a problem with nested tables. I have put 2 tables with a different number of columns inside another table. When i try to set the widths of each column of the tables (method .setWidths) the table with fewer columns inherits the widths of the tabl

RE: [iText-questions] Concat the same AcroForm

2003-01-09 Thread Paulo Soares
Concat won't work here. You'll have to use a variation of CopyPdf.java. As it is it copies everything, fields included. You'll have to change it to iterate through the fields and change their names. See ListFields.java for a way to know where the fields are. Best Regards, Paulo Soares > -Orig

RE: [iText-questions] Template Concept supported in iText?

2003-01-09 Thread Paulo Soares
The answer is yes to all. Best Regards, Paulo Soares > -Original Message- > From: Pritam Dewan [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, January 09, 2003 10:27 > To: [EMAIL PROTECTED] > Subject: [iText-questions] Template Concept supported in iText? > > Hi, >I would like to k

RE: [iText-questions] serious problem concatenating pdfs together

2003-01-09 Thread Paulo Soares
It may be a problem of too many nested templates. Each time a concat is made each page is inserted as a template. If you have two concats than you'll have a template inside a template and so on. Did you try with CopyPdf.java? Here the pages are copied without using templates and you get the links a

[iText-questions] Template Concept supported in iText?

2003-01-09 Thread Pritam Dewan
Hi,    I would like to know if the concept of templates supported in iText.What i mean is i generate a template for a pdf document with Acrobat Writer and then resuse this template by writing dynamic data.This what we have actually implemented in our framework for pdf.In the template we de

[iText-questions] Template Concept supported in iText?

2003-01-09 Thread Pritam Dewan
Hi,    I would like to know if the concept of templates supported in pdf.What i mean is i generate a template for a pdf document with Acrobat Writer and then resuse this template by writing dynamic data.This what we have actually implemented in our framework for pdf.In the template we defin

[iText-questions] Concat the same AcroForm

2003-01-09 Thread Aristide Di Lauro
Hello I have to Concat the same Pdf Document whit AcroForm and Fileds in one document. Example i need to duplicate one page document in 10 pages document after I open this document and put the value with FDF file. Generaly I do this command in Adobe Javascript " this.spawnPageFromTemplate(sTempl

[iText-questions] Please help!

2003-01-09 Thread Nickooii Kaveh - knicko
Hi there, I was wondering if there is a way to same a JTable to a PDF file using iText. Thanks Kaveh Nickooii ACXIOM Corporation Software Developer, FSG V TU Office: (501) 342-0164 Cell:(501) 960-2197 * The information c

Re: [iText-questions] Indenting a Header!

2003-01-09 Thread Bruno
Quoting "John L. Lowenthal" <[EMAIL PROTECTED]>: remove: > headerText.setAlignment(ALIGN_LEFT); > headerText.setIndentationLeft(indent); > header = new HeaderFooter(headerText, false); add: header.setAlignment(ALIGN_LEFT); --- This SF.NET em

[iText-questions] Indenting a Header!

2003-01-09 Thread John L. Lowenthal
Hello, I am having a problem formatting text that is to be part of the document header. The text is stored as a Paragraph, which is then passed as a parameter to create a HeaderFooter object. Finally, the setHeader method is used. The text shows up in the desired font, but here's the proble