Re: [iText-questions] Any reason the com.lowagie.text.Document isnot serializable?

2002-10-01 Thread Bruno Lowagie
Ramakrishna Kuppa wrote: Is there any reason for the Document object not being Serializable? Embedded Fonts. --- This sf.net email is sponsored by: DEDICATED SERVERS only $89! Linux or FreeBSD, FREE setup, FAST network. Get your own server

[iText-questions] A word over the whole length of the page??

2002-10-01 Thread S DG
Does anybody now how is it possible for line out a word over the whole length of the page? Example. T H I SAT E S T Thanks Steven _ Chat on line met vrienden en probeer MSN

[iText-questions] How can i send the created PDF directly to the printer!

2002-10-01 Thread Michael Plonka
hello! How can i send the created PDF directly to the printer, without the user! Thanks Mike

RE: [iText-questions] Table as header ?

2002-10-01 Thread Paulo Soares
Unless you are using rowspan changing a Table into a PdfPTable is trivial. If you have rowspan then it has to be converted to nested tables and the difficulty changes from trivial to easy. What's really your problem? Best Regards, Paulo Soares -Original Message- From: Gerald Fehringer

RE: [iText-questions] How to compress PDF

2002-10-01 Thread Paulo Soares
The pdf is already compressed. The problem is that applications that write to Graphics2D don't bother with redundancy, swing being a particularly bad example. In some tests I did a JTree writes 32 times the same information. Best Regards, Paulo Soares -Original Message- From: Danny

RE: [iText-questions] A word over the whole length of the page??

2002-10-01 Thread Paulo Soares
It's possible and easy using PdfContentByte. Where do you want to put the line? Best Regards, Paulo Soares -Original Message- From: S DG [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 8:49 To: [EMAIL PROTECTED] Subject: [iText-questions] A word over the whole

RE: [iText-questions] varying border widths for a single cell

2002-10-01 Thread Paulo Soares
If that's so important to you, you can always use nested tables to have the same effect as rowspan. Best Regards, Paulo Soares -Original Message- From: Richard Unger [SMTP:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 22:26 To: Paulo Soares; [EMAIL PROTECTED] Subject:

Re: [iText-questions] Table as header ?

2002-10-01 Thread Gerald Fehringer
I have done a small example which shows what I'd like to achieve .. attached you will find that example .. Using the MyPageEvent I'm adding a table on each onStartPage() to the document, this table represents the header of my document. The main content of the document is another table which

RE: [iText-questions] tables in PDF

2002-10-01 Thread Paulo Soares
PdfPTable does colspan and nested tables have the same effect as rowspan. 2 header rows is not a problem and you can set the height of a cell to a fixed value limiting in practice the number of lines. For automatic width there are no silver bullets. You'll have to read all your data, measure it

RE: [iText-questions] Table as header ?

2002-10-01 Thread Paulo Soares
Page events only work with absolute positioned objects. You'll have to use a PdfPTable. Best Regards, Paulo Soares -Original Message- From: Gerald Fehringer [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 11:17 To: [EMAIL PROTECTED] Subject: Re: [iText-questions]

[iText-questions] sending response as stream to browser

2002-10-01 Thread sundardba
out in catch block is jsp built in object. I am using in JSP file Even if I comment the line out.println in catch block I am getting same exception :Illegal state exception How can we avoid this [EMAIL PROTECTED] wrote What is 'out' in you catch-phrase? Is it a PrintWriter you got like this:

[iText-questions] Re: sending response as stream to browser

2002-10-01 Thread Bruno
Quoting [EMAIL PROTECTED]: out in catch block is jsp built in object. I am using in JSP file JSP??? JSP??? JSP??? Why didn't you tell me earlier you were using JSP (which is in this case a very bad decision) instead of Servlets (as you should). Haven't you read

Re: [iText-questions] Table as header ?

2002-10-01 Thread Gerald Fehringer
I have managed to make my example working now :-) Have modified PdfDocument.add(Element) method for the case of TABLE .. in case a new page is triggered now I adjust the indentTop and currentHeight (if required i.e. currentHeight 0, this is somewhat similar to when a header object is added to

Re: [iText-questions] Any reason the com.lowagie.text.Document is not serializable?

2002-10-01 Thread Matt Benson
There are embedded fonts in a Document? I had thought a good reason for a Document's not being Serializable is that content added to a Document is lost unless there is a DocWriter attached. If you serialized the Document, you wouldn't be able to bring along any/all of its writers, so you would

[iText-questions] Vertically aligned text

2002-10-01 Thread Henrik Lindqvist
Hi All, A newbie question: How can I make a Paragraph or Phrase's on a page or in a ColumnText build from the bottom (or baseline) upwards? Like this: --- column/page top --- row 1. row 2 is too long and is wrapped. row 3. --- column/page bottom --- / h e n r i k

[iText-questions] printing pdf

2002-10-01 Thread Eduardo B. Santilli - SICREDI Serviços
I create a pdf with iText and now i need to print them on java. How can i do this? Eduardo B. Santilli Tecnologia - ProgramadorSicredi ServiçosTelefone: (51) 3358-4700 Ramal: 4979

[iText-questions] Re: build 95

2002-10-01 Thread Bruno Lowagie
Kenneth M Wright wrote: I just wanted to bring this problem to your attention. There is nothing in the readme or version notes to indicate that there may be a difference with this build. If you go to http://www.lowagie.com/iText/ the first line of text is: IMPORTANT: IF YOU HAVE PROBLEMS WITH

[iText-questions] Problem while adding different elements (para,phrase) with table object in another table's cell

2002-10-01 Thread VK
I have table A with 2 columns I would like to add the following to the cell 1 of table A 1. paragraph 2. phrase 3. table B (with 8 columns) 4. paragraph 5. phrase I have tried this with addElement function of Cell . But problem occurs is that all other text i.e. (1. paragraph, 2. phrase, 4.

RE: [iText-questions] Vertically aligned text

2002-10-01 Thread Paulo Soares
With ColumnText simulate the writing to know the height and then place it at the desired position. A PdfPTable with a fixed row height and ALIGN_BOTTOM will also do. Best Regards, Paulo Soares -Original Message- From: Henrik Lindqvist [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, October

[iText-questions] Problem with Japanese text

2002-10-01 Thread Ashishb
Hi, I have some Japanese and English text that I have to put on a specific location on a PDF page based on the user input. How can I color that text and put it at a specific location on a PDF page? Ashish --- This sf.net email is