Re: [iText-questions] New release itext-paulo-107

2003-01-07 Thread Bruno
Quoting Paulo Soares [EMAIL PROTECTED]: Changes in itext-paulo-107 (2003-01-06) I have uploaded the changes to CVS. I don't have the time to make a new release rightnow. Bruno --- This SF.NET email is sponsored by: SourceForge Enterprise

[iText-questions] table, cell, backgroundcolor and offset

2003-01-07 Thread sébastien laforet
hello, when using a Table, the FIRST cell has a backgroundcolor which spans larger than the border of the cell. but the second, third, .. cell don't have the problem. so visually the first cell seems a bit wider and taller than the others. i have noted that when using table.setOffset(-xxx), the

RE: [iText-questions] table, cell, backgroundcolor and offset

2003-01-07 Thread Paulo Soares
That's fixed but didn't make the last (itext-paulo) release. Change the following PdfContentByte.rectangle (Rectangle rectangle): // the backgroundcolor is set Color background = rectangle.backgroundColor(); if (background != null) { setColorFill(background);

[iText-questions] Multiple spaces in HTML

2003-01-07 Thread kevint
Hi I am currently working on a development where a very simple document can be output from our application in either PDF or HTML format, and using iText is an excelent way for me to be able to generate the document using the same code for both formats. Unfortunately, some of the document

RE: [iText-questions] About form field

2003-01-07 Thread Paulo Soares
That's the way form fields work in Reader, you have to duplicate the behavior in the stream. The full Acrobat has an annotation handler that can get by without the stream. For the password you need to set the flags: PdfFormField.setFieldFlags(PdfFormField.FF_PASSWORD); Best Regards, Paulo

RE: [iText-questions] Multiple spaces in HTML

2003-01-07 Thread Paulo Soares
You can try to use the character \u00a0 instead of the space and see if it works. Best Regards, Paulo Soares -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 10:48 To: [EMAIL PROTECTED] Subject: [iText-questions] Multiple

[iText-questions] preventing multiple get requests from IE while serving up a dynamic pdf documents

2003-01-07 Thread Mac Fraser
One of the posted issues in dealing with IE and dynamic PDF generation is the multiple get requests by IE which forces the multiple generation and download of a dynamically generated PDF. The issue is documented here http://support.microsoft.com/default.aspx?scid=kb;EN-US;q293792 Based on the

Re: [iText-questions] About form field

2003-01-07 Thread Kumata Mitsugu
Thank you Paulo About password field; I added the folllowing code to my program; field.setFlags(PdfFormField.FF_PASSWORD); But this code produces /Ff 8192. I think right flag shoudl be /Ff 12591104. To get right flag, Do I have to do anything else? KuMi That's the way form fields work in

Re: [iText-questions] About form field

2003-01-07 Thread phillip
About password field; I added the folllowing code to my program; field.setFlags(PdfFormField.FF_PASSWORD); Read PDF Reference p.448. Bit 14 is Password field flag. But this code produces /Ff 8192. I think right flag shoudl be /Ff 12591104. 12591104 =

Re: [iText-questions] About form field

2003-01-07 Thread Kumata Mitsugu
Thank you Phillip So, if you wait for the new release, you should do: field.setFlags(PdfFormField.FF_PASSWORD | 4194304); or if you do not, you should do: field.setFlags(PdfFormField.FF_PASSWORD | PdfFormField.FF_DONOTSPELLCHECK); I tried field.setFlags(PdfFormField.FF_PASSWORD |