[iText-questions] Table issues

2004-09-08 Thread Mirza Abbas Raza
Hi, I need some help on issues I am having with tables. 1. How can I draw a table without border but with lines between cells? 2. And how can I draw a table with border but without lines between cells? 3. In a cell, I have text followed by a small image and some text after it. I create the cell

RE: [iText-questions] Support of lists in PdfPCell

2004-09-08 Thread Christian Lauer
Hi Paulo, indeed it works, that's really nice to see! At this point I'd really like to thank you for the great improvements. I'm sure I haven't completely discovered all of them so far ;-) I hope I can help you a bit by testing and reporting bugs. This seems to be a minor one: It seems that

[iText-questions] Help needed IE problem

2004-09-08 Thread cristian
Hello, I am using iText for creating a pdf on the fly in an Internet Explorer browser. On IE 6.0 and high is working perfect, but on IE 5.5 it does not work. It returns in browser with a picture of broken link to an image (as HTML does when an image could not be retrieved by the browser).

RE: [iText-questions] Support of lists in PdfPCell

2004-09-08 Thread Paulo Soares
It's a BIG bug. Replace in PdfDocument.addPTable(): if ((status ColumnText.NO_MORE_TEXT) != 0) { text.moveText(0, ct.getYLine() - indentTop() + currentHeight); currentHeight = indentTop() - ct.getYLine(); break; } Best Regards, Paulo Soares -Original Message- From:

RE: [iText-questions] Support of lists in PdfPCell

2004-09-08 Thread Paulo Soares
The indent is the indent in the list, you can decrease it or increase it. Best Regards, Paulo Soares -Original Message- From: Christian Lauer [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 7:33 AM To: Paulo Soares Cc: iText Mailing List Subject: RE:

[iText-questions] New release itext-paulo-137

2004-09-08 Thread Paulo Soares
Changes in itext-paulo-137 (2004-09-08) - added a generic line dash function in PdfContentByte. - fixed a bug that caused the text to be overlapped with a PdfPTable. - fixed a concurrency problem in TrueTypeFontUnicode. Contribution by Adrian Pronk. All this at:

RE: [iText-questions] Support of lists in PdfPCell

2004-09-08 Thread Christian Lauer
Shouldn't the list indent for usage in PdfPCells behave exactly like direct usage in the document? Currently the indent of list items when used in PdfPCells is twice as big (in my test, it may vary for other indent measurements) in output as when added to the document. Best regards, Christian

RE: [iText-questions] Support of lists in PdfPCell

2004-09-08 Thread Christian Lauer
Many thanx for the quick fix, I'll test it this evening! Best regards, Christian It's a BIG bug. Replace in PdfDocument.addPTable(): if ((status ColumnText.NO_MORE_TEXT) != 0) { text.moveText(0, ct.getYLine() - indentTop() + currentHeight); currentHeight = indentTop() -

Re: [iText-questions] How to set font size in form field with existing pdf file

2004-09-08 Thread Dr.Shush
Hi Paulo, Thanks for your reply. However, I didnt find AcroFields.setFieldProperty() method in the itext-1.02b.jar file, what I got is version 1.02 from http://www.lowagie.com/iText/. is it the latest? what's the right file I need? Thanks again --- Paulo Soares [EMAIL PROTECTED] wrote:

RE: [iText-questions] Support of lists in PdfPCell

2004-09-08 Thread Paulo Soares
Send me an example with the problem. Best Regards, Paulo Soares -Original Message- From: Christian Lauer [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 08, 2004 1:12 PM To: Paulo Soares Cc: [EMAIL PROTECTED] Subject: RE: [iText-questions] Support of lists in PdfPCell

RE: [iText-questions] New release itext-paulo-137

2004-09-08 Thread CRANFORD, CHRIS
Paulo In this release, you mention a bug that caused text to overlap. Is this when you specify something like a two column table where both columns are nowrap but the text would overlap because the widths of the column is smaller than the content? -Original Message- From: Paulo Soares

Re: [iText-questions] How to set font size in form field with existing pdf file

2004-09-08 Thread Bruno Lowagie
Dr.Shush wrote: Hi Paulo, Thanks for your reply. However, I didnt find AcroFields.setFieldProperty() method in the itext-1.02b.jar file, what I got is version 1.02 from http://www.lowagie.com/iText/. is it the latest? what's the right file I need? You need the jar at

RE: [iText-questions] New release itext-paulo-137

2004-09-08 Thread Paulo Soares
No. What you describe is not a bug, it's by design. This bug appeared when text and tables where added with Document.add() and it's a bug specific to itext-paulo-136. Best Regards, Paulo Soares -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [iText-questions] Help needed IE problem

2004-09-08 Thread Bill Ensley
Read the tutorial -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of cristianSent: Wednesday, September 08, 2004 12:29 AMTo: [EMAIL PROTECTED]Subject: [iText-questions] Help needed IE problem Hello, I am using iText for creating a pdf

[iText-questions] Trouble with AcroFields.setFieldProperty when set font size

2004-09-08 Thread Dr.Shush
Now I have version 1.37 jar file. After hacking the source code, I update my code as following, however, the font-size doesnt change. ;-(( 3 PdfReader reader = new PdfReader(C:\\blah.pdf); ByteArrayOutputStream baos = new ByteArrayOutputStream(); PdfStamper

[iText-questions] PdfStamper and form fields

2004-09-08 Thread Ed
Hi, Is there a way to add form fields to a pdf using PdfStamper? The only thing I have found is that I can set fields if the field exists in the PdfReader. I want to add fields though like I can do using PdfWriter. I have tried two methods to read in a page from a pdf file that has a graphic I

RE: [iText-questions] Support of lists in PdfPCell

2004-09-08 Thread Christian Lauer
Hi Paulo, here's an example - both Java and PDF which explains the list-symbol indentation problem. Best regards, Christian On Wed, 2004-09-08 at 14:22, Paulo Soares wrote: Send me an example with the problem. Best Regards, Paulo Soares -Original Message- From: Christian

[iText-questions] Future of iText

2004-09-08 Thread Steve Appling
Could someone (Paulo or Bruno) comment on the expected future path of iText development. I'm not clear about the intent of having the two different versions (itext.sourceforge.net and itextpdf.sourceforge.net). Is it the intent for Paulo's experimental version to become the main version

Re: [iText-questions] Future of iText

2004-09-08 Thread Matt Benson
Paulo is doing the most part of new development. He releases an itext-paulo version much more often than Bruno releases an official iText version, but every official iText version AFAIK rolls up the latest of Paulo's work. HTH, Matt --- Steve Appling [EMAIL PROTECTED] wrote: Could someone

[iText-questions] multipliedLeading + spacingBefore

2004-09-08 Thread Christian Lauer
Hi Paulo, I've found out that the multiplied leading doesn't work for Paragraphs placed into the document, is it planned to support this as in PdfPTables or ColumnTexts? Also I think I've discovered another bug. When you're using the spacingBefore feature it seems it will not work for the first

[iText-questions] PDF footer: Page X of Y

2004-09-08 Thread Sullivan, Sean C - MWT
I am using iText 1.02b I want to create a PDF document with a very specific footer. The footer must have this text: Page X of Y Is there an easy way to do this? The iText tutorial mentions that I should use the onCloseDocument method. Can anybody provide some example code?

Re: [iText-questions] Future of iText

2004-09-08 Thread Mirza Abbas Raza
Hi, I am looking for options in creating pdfs in our corporate web apps. I got to do small bits for now with iText. However, I want to know when the production version will be released as I see status as 4/5 on sourceforge. Also, has anybody put this library already on production? Thanks. ---

[iText-questions] Font Descent

2004-09-08 Thread Steve Appling
Given a BaseFont object, how can I determine the font descent (maximum extent below the baseline) in points? The BaseFont class contains a static constant DESCENT member, but I don't see how this can be the real descent for every font regardless of size. It has a value of 3, but I'm not sure

[iText-questions] Re: Font Descent

2004-09-08 Thread Steve Appling
I retract my previous stupid question. I did not see the getFontDescriptor method until after my email. Sorry. --- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA

Re: [iText-questions] Table issues - Two solved, two remaining

2004-09-08 Thread Mirza Abbas Raza
Ok. I have figured out the first two points. I would really appreciate if someone can help on the last two points. I would simplify my questions. Point 3. I have a nested table. In one of the rows of this nested table, I have to put in some text followed by an image and then some text. I am doing