Re: [iText-questions] WebSphere Application Server & Fonts Problems

2002-11-08 Thread Paulo Soares
Are you using the methods in the FAQ? Can you generate the file to disk (just to check that the file is generated and it's a browser problem)? Best Regards, Paulo Soares --- Marco Bianconi <[EMAIL PROTECTED]> wrote: > Hi, > I'm a java developer and I'm using your Pdf java > classes. > I would ask

[iText-questions] WebSphere Application Server & Fonts Problems

2002-11-08 Thread Marco Bianconi
Hi, I'm a java developer and I'm using your Pdf java classes. I would ask you a question about a problem occurred  publishing my classes on WebSphere Application Server 3.5. My application runs well on Visual Age 4.0 and it seems to work on Application Server too, but after compiling, Acroba

[iText-questions] Design question using iText

2002-11-08 Thread David Thielen
Hi;   Please help on this.   I have a program that basically takes a rtf file as a template and creates a pdf file. Therefore, I have to do most everything the Word can do formatting wise. Specifically this includes: text mixed with tables and lists. And for paragraphs/tables/lists, being abl

Re: [iText-questions] Import pages

2002-11-08 Thread Bruno
Quoting Leonard Rosenthol <[EMAIL PROTECTED]>: > I FINALLY sent the code to Paolo last night ;). I will make the time to put Paulo's release on CVS and on my site maximum 1 week after it is published on his site. Bruno --- This sf.net e

RE: [iText-questions] Regarding my problem , plz help :-)

2002-11-08 Thread Paulo Soares
You'll have to create your text at precise positions. Use BaseFont.getWidthPoint() to find the size of you text. For multi-line use ColumnText. Best Regards, Paulo Soares > -Original Message- > From: prashant kakani [SMTP:[EMAIL PROTECTED]] > Sent: Friday, November 08, 2002 16:14 > To:

[iText-questions] Font size - XML config

2002-11-08 Thread Rajeev Mancheril
Hi,   I'm using XML configuration to generate PDF (parsing this XML file and replacing database values with the help of tagmap). I have a problem setting font when using tagmap.                                       In the above code when i set a value for "DESCRIPTION" (using XmlPe

[iText-questions] Regarding my problem , plz help :-)

2002-11-08 Thread prashant kakani
Dear iText Developers, I have a problem and would really appreciate if anybody could give me an idea and help me. Well, in my PDF , i have a list of Dynamic data written ( the number of items varies ) and after this dynamic data, I have a few check-boxes to create. Till, now i used to create check-

RE: [iText-questions] Is it possible to center a nested PdfPTable in a PdfPCell?

2002-11-08 Thread Paulo Soares
You have to play with the left and right padding, a nested table will always occupy the full cell extent but you can make that extent smaller. Best Regards, Paulo Soares > -Original Message- > From: Khaled Alakhras [SMTP:[EMAIL PROTECTED]] > Sent: Friday, November 08, 2002 16:00 > To: [

RE: [iText-questions] Import pages

2002-11-08 Thread Paulo Soares
I received some moments ago Leonards contribution. I'll try to integrate the changes this weekend and have a release next week. Note that this changes where made with an older version with the PR* classes that don't exist anymore so, we'll see how long it takes. Best Regards, Paulo Soares > -

[iText-questions] Is it possible to center a nested PdfPTable in a PdfPCell?

2002-11-08 Thread Khaled Alakhras
Is it possible to center a nested PdfPTable in a PdfPCell? setting the cell horizontal alignment doesn't seem to work. It does work for a Phrase and Image but not for PdfPTable. PdfPTable nested = new PdfPTable(2);cell = new PdfPCell(nested);cell.setHorizontalAlignment(PdfPCell.ALIGN_CENTER);table

Re: [iText-questions] Import pages

2002-11-08 Thread Matt Benson
Great, don't know when or whether I'll need it but it's always nice to see iText grow, which it's done a lot since I first started using it. -Matt --- Leonard Rosenthol <[EMAIL PROTECTED]> wrote: > At 7:38 AM -0800 11/8/02, Matt Benson wrote: > > Doesn't it make you feel bad always having to >

Re: [iText-questions] Import pages

2002-11-08 Thread Leonard Rosenthol
At 7:38 AM -0800 11/8/02, Matt Benson wrote: Doesn't it make you feel bad always having to tell people what you're going to give them and never having time to perfect it for delivery? I FINALLY sent the code to Paolo last night ;). Leonard --

Re: [iText-questions] FONTS...

2002-11-08 Thread Matt Benson
That is what I had in mind, yes. -Matt --- Matías_Salvador <[EMAIL PROTECTED]> wrote: > OK, I'll figure out how many columns fit in my page > with the widht() of my > PageSize() and the summatory of chars of my columns > multiplied by my average > char width, that i'll get from my basefont... is

Re: [iText-questions] FONTS...

2002-11-08 Thread Matías Salvador
OK, I'll figure out how many columns fit in my page with the widht() of my PageSize() and the summatory of chars of my columns multiplied by my average char width, that i'll get from my basefont... is that correct? I'll let you know thanks! - Original Message - From: "Matt Benson" <[E

RE: [iText-questions] Import pages

2002-11-08 Thread Paulo Soares
I believe that currently PdfAnnotation supports everything (or near) but the translation will have to be made from the low level input to the PdfAnnotation or PdfFormField API. Best Regards, Paulo Soares > -Original Message- > From: Leonard Rosenthol [SMTP:[EMAIL PROTECTED]] > Sent: Frida

Re: [iText-questions] Import pages

2002-11-08 Thread Matt Benson
Leonard, this is a sympathetic comment: Doesn't it make you feel bad always having to tell people what you're going to give them and never having time to perfect it for delivery? I've been going through this for over a year with a particular project I am working on and it fills me with guilt ev

Re: [iText-questions] Multiple Headers and Footers

2002-11-08 Thread Matt Benson
Set the new header/footer before you change the page. This should probably be added to the FAQ or explicitly explained in the tutorial. I have seen this question many times but didn't find the answer (which I have long since memorized) in either of the places mentioned above. This leads me to be

Re: [iText-questions] Import pages

2002-11-08 Thread Leonard Rosenthol
At 4:02 PM +0100 11/8/02, [EMAIL PROTECTED] wrote: I've gotten successfully all informations about annotations in the input page, but I'm not able to write them into output page. I've tried to use PdfAnnotation.createLink method but without success. How can I write PdfAnnotation? Well, the pag

Re: [iText-questions] FONTS...

2002-11-08 Thread Matt Benson
Try this: 1. Figure out how many columns will fit on the page by calculating column widths as you have described. 2. Construct a Table with this number of columns. 3. Set the column widths to the widths you have already calculated for each of the columns to go in the Table on this page. Even i

Re: [iText-questions] Page Numbers For Document

2002-11-08 Thread Matt Benson
Depending on your needs you could use a HeaderFooter object or page events. The HeaderFooter object is very simple to use; there is a working example of the page event at http://www.lowagie.com/iText/tutorial/ch12.html#eventexample . -Matt --- [EMAIL PROTECTED] wrote: > Hai > > My requirement i

[iText-questions] Re: [iText-questions] Import pages

2002-11-08 Thread [EMAIL PROTECTED]
I've gotten successfully all informations about annotations in the input page, but I'm not able to write them into output page. I've tried to use PdfAnnotation.createLink method but without success. How can I write PdfAnnotation? Paolo > At 10:19 AM +0100 11/8/02, [EMAIL PROTECTED] wrot

[iText-questions] Page Numbers For Document

2002-11-08 Thread sundardba
Hai My requirement is that I need to create page number at the end of each Page I am creating a single table in which number of rows will go from 2 to N number. I implemented the PdfPageEvent Interface I oover ridden the Methods onEndPage It doesn't write the page number Give me the solution

Re: [iText-questions] Import pages

2002-11-08 Thread Leonard Rosenthol
At 10:19 AM +0100 11/8/02, [EMAIL PROTECTED] wrote: current iText version doesn't support "real copy" of pages. Correct, though it is coming... I've added new funcionality that it allow to copy also outlines. My problem is in the copy of Annotations. Is there someone that can help me? W

Re: [iText-questions] FONTS...

2002-11-08 Thread Matías Salvador
My columns don't have the same width, this one depends on an external configuration, for example: column1=10 chars column2=25 chars column3=45 chars ... Then, depending on the page size, the font size and the font type chosen before the building of the PDF file, my application puts the columns th

Re: [iText-questions] FONTS...

2002-11-08 Thread Cooremans, Rony
In 1 word : NO but why do you need that ? Normally should is a work around . (eg for images ) I only needed such functionallity to fit images in a cell. Matías Salvador wrote: > So it is not what I am looking for. I would need to set the height and width > of a cell... I know it extends from

Re: [iText-questions] FONTS...

2002-11-08 Thread Matías Salvador
So it is not what I am looking for. I would need to set the height and width of a cell... I know it extends from a Rectangle, but I can't find the method to set this values, except for the constructor of the Rectangle itself... Is it possible to do what I say? - Original Message - From: "

Re: [iText-questions] FONTS...

2002-11-08 Thread Cooremans, Rony
setColsPan does just what it says sets the spanning of a collum which means how manny collumns will a cell ocupy in a table (1 to number of colums of your table) (can be read in the javadoc if i am not mistaken , is also the same in html) Height and width of a page are in points (also explained s

Re: [iText-questions] FONTS...

2002-11-08 Thread Matías Salvador
Yes I do, but I can't find neither in the javadocs nor in the tutorial the part where it explains the units of the height() of the PageSize or the units of the value I have to pass to the setColsPan of a Cell. Could anybody help me? Or at least, tell me where I can find this info. - Origi

RE: [iText-questions] FONTS...

2002-11-08 Thread Paulo Soares
You really don't bother to read any of the available documentation, do you? > -Original Message- > From: Matías Salvador [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, November 07, 2002 18:47 > To: iText List > Subject: Re: [iText-questions] FONTS... > Importance: High > > With the g

[iText-questions] Import pages

2002-11-08 Thread [EMAIL PROTECTED]
Hi, current iText version doesn't support "real copy" of pages. I've added new funcionality that it allow to copy also outlines. My problem is in the copy of Annotations. Is there someone that can help me? Thanks, Paolo Aldovini ---

Re: [iText-questions] Setting the colSpan on a PdfPCell that cont ains a PdfPTable

2002-11-08 Thread Spam
Khaled Alakhras wrote: Maybe you are getting a different result, I am attaching the pdf file generated on my system: The desired layout: --- | | | --- | |

[iText-questions] Re: A question

2002-11-08 Thread Bruno
Quoting SRIDHARAN Aravind <[EMAIL PROTECTED]>: > If 'Print' button could be disabled, > why not 'Save' button? > What is the technical issue behind this? I thought it was in the mailing list archives, but I didn't find it. > Please let me know as I need to explain my higher officials here who a