[iText-questions] Problem with Acro Fields and rotated page format

2005-04-04 Thread Christian Lauer
I've tried to place an AcroField on a rotated page, which doesn't seem to work. The text field in this case seems to be initially drawn at the right place but if you like to edit the field the text is rendered rotated by 90 degrees. I've attached a PDF document which illustrates the effect plus the

[iText-questions] how can I add text fields with the same name

2005-04-04 Thread wang yun
dear support, I want to add three text Form fields with the same name. How can I do that? Thanks, yun wang --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover

[iText-questions] Autoreply: iText-questions digest, Vol 1 #2811 - 6 msgs

2005-04-04 Thread jens . hsu
Our office is closed on Tuesday, April 5, due to a public holiday. The office will be resumed on Wednesday, April 6. --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users.

[iText-questions] Best way to insert extra space

2005-04-04 Thread Andreas Meyer
I sometimes need to insert extra space in a single line of text or between 2 lines of a paragraph. In case of a single line, a possible solution is to enter a chunk containing a space character and use setHorizontalScaling(). A way to get extra space between 2 lines of a paragraph is to insert a "

Re: RE: [iText-questions] middle align background image with text

2005-04-04 Thread Andreas Meyer
bf.getAscentPoint() works perfect, thanks again Paulo ! > The result is correct as the alignment is made by the leading. What you > want is to align by the ascent. You can get the ascent with > BaseFont.getFontProperties(). > > > -Original Message- > > From: Andreas Meyer [mailto:[EMAIL

[iText-questions] FDF merging

2005-04-04 Thread Thomas Bureau
Hi all, i'm looking for an FDF merging example. Do you have that ? Thanks, Thomas --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live u

[iText-questions] RE: Is there a way to put an image ( gif) inside a formfield.?

2005-04-04 Thread Paulo Soares
New pdf, existing pdf, new field, existing field, from code, from FDF? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Monday, April 04, 2005 5:31 PM > To: Paulo Soares > Cc: itext-questions@lists.sourceforge.net; > [EMAIL PROTECTED]; Andreas Meyer > S

[iText-questions] Is there a way to put an image ( gif) inside a formfield.?

2005-04-04 Thread anitha . d . chandran
Hi, Is there a way to put an image ( gif) inside a formfield.? Thanks, Anitha --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live

RE: RE: [iText-questions] middle align background image with text

2005-04-04 Thread Paulo Soares
The result is correct as the alignment is made by the leading. What you want is to align by the ascent. You can get the ascent with BaseFont.getFontProperties(). > -Original Message- > From: Andreas Meyer [mailto:[EMAIL PROTECTED] > Sent: Monday, April 04, 2005 5:53 PM > To: Paulo Soares

Re: RE: [iText-questions] middle align background image with text

2005-04-04 Thread Andreas Meyer
As mentioned below the text "PARTY" is marked with "myChunk.setGenericTag()" and "public void onGenericTag()" now contains these lines: Image img = Image.getInstance("kategorie_bg.gif"); img.scalePercent(24); // 300dpi img.setAbsolutePosition(rec

[iText-questions] Add an image to existing PDF with form in servlet on the fly?

2005-04-04 Thread Matt Galvin
Hi All, This is my first post to the list. I have been using iText on a project and I must say that it is really great and has proven to be very useful. I have read through a bunch of docs and tutorials and learned how to do most of the things I need to do but have not yet discovered how to do one

[iText-questions] itextPHP

2005-04-04 Thread Bud Staylor
Hi folks. I just wanted to drop you a line. Itextphp is going well. I am shooting for a alpha version in early May. I will keep you posted. A website is in the work. Mills Staylor --- SF email is sponsored by - The IT Product Guide Read ho

Re: [iText-questions] PdfTable background and borders

2005-04-04 Thread Steve Appling
Looking into it a little more, the code that is supposed to handle keeping the border on top will only work for cells on the same row. There is also a hack in there to keep the table borders from being covered up by backgrounds. So, you're right - this is a bug. I'll look into fixing this, but

Re: [iText-questions] PdfTable background and borders

2005-04-04 Thread David Perez
Thanks Steve I have created a very small example that illustrates the bug. I know PdfPTable is a lot better, but I mainly use PdfTable because it offers rowspans. Steve Appling schrieb: This should be handled already. It seems to work fine in my simple tests. Do you have a SIMPLE example of th

Re: [iText-questions] XML Support for PdfPTable

2005-04-04 Thread Steve Appling
Several people have downloaded the jar with XML support for PdfPTable (from www.appling.org/itext), but I haven't gotten any comments about it. If you've had a chance to try it out, please let me know your comments (good or bad). - Original Message - From: "Steve Appling" <[EMAIL PROTEC

Re: [iText-questions] PdfTable background and borders

2005-04-04 Thread Steve Appling
This should be handled already. It seems to work fine in my simple tests. Do you have a SIMPLE example of the problem? BTW, it is probably better to use PdfPTable if you can. - Original Message - From: "David Perez" <[EMAIL PROTECTED]> To: "iText" Sent: Monday, April 04, 2005 5:14 AM

RE: RE: RE: [iText-questions] middle align background image with text

2005-04-04 Thread Paulo Soares
What am I supposed to see? Post working code and the result that you expect. > -Original Message- > From: Andreas Meyer [mailto:[EMAIL PROTECTED] > Sent: Monday, April 04, 2005 2:59 AM > To: Paulo Soares > Cc: itext-questions@lists.sourceforge.net > Subject: Re: RE: RE: [iText-questions]

[iText-questions] PdfTable background and borders

2005-04-04 Thread David Perez
Hi all, I think I have found a bug in PdfTable (iText 1.02 but seems to also appear in the latest iText 1.2). I have several cells with a background color and can hide the border of neighboring cells. After having reviewed the source code (PdfDocument.java), I find two solutions: Paint the

Re: [iText-questions] Problem with inserting sequence of images and text

2005-04-04 Thread bruno
Ide Mile wrote: This might be a bug! No it isn't. I'm writing something about this in the new tutorial (but the example isn't online yet). Try this and compare the default iText behaviour with the one you need: The solution you are looking for is: writer.setStrictImageSequence(true); This is the