Re: [iText-questions] Paragraph problem when using CJK fonts

2005-03-10 Thread Paulo Soares
Use the encoding "UniJIS-UCS2-HW-H" instead of "UniJIS-UCS2-HW-V". The 'V' is for vertical. If you want to use vertical text there's the class VerticalText to help you. - Original Message - From: "Jianhua Jin" <[EMAIL PROTECTED]> To: Sent: Thursday, March 10, 2005 8:16 PM Subject: [iText

[iText-questions] Paragraph problem when using CJK fonts

2005-03-10 Thread Jianhua Jin
When I use the CJK fonts the paragraphs are split such that there is only one character per paragraph. I could not find out why. Could you please take a look at the attached sample? Thanks,   Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard. Chap0909.java Description: Chap090

[iText-questions] Keep together, Chunk

2005-03-10 Thread Eric ...
I would like to have a chunk that fits on the same page. Seems that setKeepTogether() doesn't work in this case. Anyone has an idea for this problem ? One another question : I see "setKeepTogetherWithNext()" for the RTF, is there the same for the PDF ? Here's my code : cell = new Cell( prgph = ne

Re: [iText-questions] PDF file size increase after form fields addition..

2005-03-10 Thread Leonard Rosenthol
At 11:39 PM 3/9/2005, Ronak Shah wrote: I am using text-box form fields in my PDF reporting application. I need to stamp their values dynamically from database. OK. The problem is my PDF file size without form field is around 160 Kb and after creating form fields (nearly 20 text fiel

Re: [iText-questions] [RTF : RtfCell : List] what's the right way to put a List in a RtfCell of a Table for a RTF document ?

2005-03-10 Thread Mark Hall
On Thursday 10 March 2005 12:28, L. Dejoux wrote: > and all elements of my list are not displayed in a list but one after the > other one... What version of iText are you using? I think this has been fixed in the latest release. Greetings, Mark -- Don't let your mind wander -- it's too little to

[iText-questions] [RTF : RtfCell : List] what's the right way to put a List in a RtfCell of a Table for a RTF document ?

2005-03-10 Thread L. Dejoux
Hello,   I'm trying to insert a List in a Cell of a Table like this   Table table = new Table(1); RtfCell cell = new RtfCell(); List list = List(false, 10); list.add(new ListItem("Mon premier element)); list.add(new ListItem("Mon deuxième));cell.addElement(list ); table.addCell(cell);   and all ele

RE: [iText-questions] How to set default Zoom settings for PDF

2005-03-10 Thread Paulo Soares
PdfAction action = PdfAction.gotoLocalPage(1, new PdfDestination(PdfDestination.XYZ, 0, 1, 1), writer); writer.setOpenAction(action); > -Original Message- > From: George Mathew Ayalloor [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 10, 2005 11:01 AM > To: Paulo Soares > Cc: itext

Re: [iText-questions] How to set default Zoom settings for PDF

2005-03-10 Thread George Mathew Ayalloor
Thank you very much Mr.Soares.   It will be greatfulll if you give a sample code illustiating 100% width for default Zooming.   Thanks, George Mathew.     - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "George Mathew Ayalloor" <[EMAIL PROTECTED]>;

RE: [iText-questions] problem with table cell data over multiple pages

2005-03-10 Thread Paulo Soares
Use a PdfPTable. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Ronak Shah > Sent: Thursday, March 10, 2005 10:28 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] problem with table cell data over > multiple pages >

RE: [iText-questions] fitsPage(Table) with Nested tables

2005-03-10 Thread Paulo Soares
The answer is: use a PdfPTable. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Telmo Cardoso > Sent: Thursday, March 10, 2005 10:40 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] fitsPage(Table) with Nested tables >

[iText-questions] fitsPage(Table) with Nested tables

2005-03-10 Thread Telmo Cardoso
Hi I already see this question in the archives, but I don't see any answer, so I will post the original question again: "(...) I noticed that when I have nested tables (ie adding a Table object into another Table object via the insertTable method), I will get a java.lang.ClassCastException when I

[iText-questions] problem with table cell data over multiple pages

2005-03-10 Thread Ronak Shah
Hi All, I am creating table with 2 columns dynamically. This table can span across multiple pages . Whenever if any column cell near the end pf a page is spanned across multiple pages then its data gets overlapped on the following column cell data.e.g one cell data is spread across mult

RE: [iText-questions] How to set default Zoom settings for PDF

2005-03-10 Thread Paulo Soares
PdfWriter.setOpenAction(). Set the action to the first page with zoom 1. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of George Mathew Ayalloor > Sent: Thursday, March 10, 2005 8:47 AM > To: itext-questions@lists.sourceforge.net > Subject: [iTex

RE: [iText-questions] charcter spacing or word spacing by justified text

2005-03-10 Thread Paulo Soares
it's possible to set the relation between the two in ColumnText and PdfWriter. Look for setSpaceCharRatio(). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Thomas Kübler > Sent: Thursday, March 10, 2005 8:55 AM > To: iText-questions@lists.sour

RE: [iText-questions] Footer

2005-03-10 Thread Paulo Soares
Set the footer before Document.open(). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of bernard le roux > Sent: Thursday, March 10, 2005 8:31 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Footer > > Hi, > > How can

RE: [iText-questions] Yet another Comment problem

2005-03-10 Thread Paulo Soares
It was fixed with the replies. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Jung Jürgen > Sent: Thursday, March 10, 2005 9:40 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Yet another Comment problem > > Hello,

[iText-questions] How to set default Zoom settings for PDF

2005-03-10 Thread George Mathew Ayalloor
Hi,   We are using iText (1.2.2) tool for creating PDF in our web application. We would like to view the PDF document in its Actual Size(100%) by default. ie Fit to Actual Size.   Is there any ways for solving the above issue using iText.   Thanks in advance,George Mathew.

[iText-questions] Footer

2005-03-10 Thread bernard le roux
Hi, How can i display the footer in first page ? Thanks, Bernard --- 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 up to the hype. Start

[iText-questions] Yet another Comment problem

2005-03-10 Thread Jung Jürgen
Hello, pdf comment supports states for each comment. I export a fdf file that also includes Status information for some single annotations an after i import this fdf file With the stamper method, this state informations are lost. I've atached a sample fdf file. Look at object 115. I think it is

[iText-questions] charcter spacing or word spacing by justified text

2005-03-10 Thread Thomas Kübler
hallo, how render itext a justified text in the column. normaly the user can set which rule will be taken, for example that first the word-spacing will be adjusted and second the charcter-spacing to fill the column-line. is there a way in itext to set this rule for different columns? with regards t

Re: [iText-questions] PDF file size increase after form fields addition..

2005-03-10 Thread Paulo Soares
That's the space taken by the appearances. You can generate the fields without appearances but they won't show in Reader 5 and below. - Original Message - From: "Ronak Shah" <[EMAIL PROTECTED]> To: Sent: Thursday, March 10, 2005 4:39 AM Subject: [iText-questions] PDF file size increase a

[iText-questions] PDF file size increase after form fields addition..

2005-03-10 Thread Ronak Shah
Hi All, I am using text-box form fields in my PDF reporting application. I need to stamp their values dynamically from database. The problem is my PDF file size without form field is around 160 Kb and after creating form fields (nearly 20 text fields) , it becomes 400Kb. I use adobe