Re: [iText-questions] HTMLWorker pdf jumbled

2006-12-01 Thread Dominic Maricic
I tried 1.4.7 just to see if it was a bug, but the problem exists in 1.4.7 too. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT

[iText-questions] HTMLWorker pdf jumbled

2006-12-01 Thread Dominic Maricic
I am trying to create a pdf from a String storing html code. The problem is thatthe pdf is generated with the entire text on the same line. So what should be 100 line pdf is now 1 line with all 100 lines stacked on top of each other (looks like a big black blob). Here is an example of the html

[iText-questions] JUnit tests

2006-12-01 Thread William L. Thomson Jr.
Greetings, Recently I took over maintaining the iText ebuild/package on Gentoo Linux. During our recent stabilization of 1.4.5, we had a bit of an issue when it came for our arch teams to test iText. Since we compile everything from source, it's part of our stabilization process to test pa

Re: [iText-questions] Need table splitting. Column headings shouldrepeat but the main table name should not.

2006-12-01 Thread Paulo Soares
See http://itextdocs.lowagie.com/tutorial/ about tables. The book explains everything in more detail and with more examples. All the projects I make I use absolute positioning and not a single Document.add(), it's just a matter of summing y offsets and measuring row heights. Paulo - Origin

Re: [iText-questions] table of contents - RTF

2006-12-01 Thread Henry Lu
Is there a way to tell the system in RTF hat a new chapter does not start on a new page? -Henry Smiley, Stuart A. wrote: >I was looping through an array of objects that my chapters are based on. >chapterNumber is an int > >Stuart > >-Original Message- >From: [EMAIL PROTECTED] >[mailto

Re: [iText-questions] Need table splitting. Column headin gs shouldrepeat but the main table name should not.

2006-12-01 Thread Nishanth
I cannot put it at an absolute position. My page will have many tables whose rows are not predetermined. The tables appear one after the other. How will I know the position on the page at which my table will be displayed? How will I know if it will extend to another page? Nishanth. --

Re: [iText-questions] table of contents - RTF

2006-12-01 Thread Smiley, Stuart A.
I was looping through an array of objects that my chapters are based on. chapterNumber is an int Stuart -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Henry Lu Sent: Friday, December 01, 2006 2:47 PM To: Post all your questions about iText here Subject: R

Re: [iText-questions] table of contents - RTF

2006-12-01 Thread Henry Lu
Thank you very much! But what is chapterNumber? How do you createed/got this value? -Henry Smiley, Stuart A. wrote: >Henry, > >This is working for me using itext-1.4.7: > >Paragraph toc = new Paragraph(); >paragraph.add((new RtfTableOfContents( >"RIGHT CLICK HERE AND SELECT \"UPDATE FIELD\

Re: [iText-questions] Need table splitting. Column headings shouldrepeat but the main table name should not.

2006-12-01 Thread Paulo Soares
Place the table at an absolute position. The standard feature is to suuport headers that reapeat on each page; if you need more you need to place the table parts yourself. Paulo - Original Message - From: "Nishanth" <[EMAIL PROTECTED]> To: Sent: Friday, December 01, 2006 6:44 PM Subje

Re: [iText-questions] Invalid characters appearing when trying to read the field names of a PDF file.

2006-12-01 Thread Paulo Soares
First of all, don't use PRAcroForm, ever, it won't work. If you do everything with AcroFields the field names will be correct. Paulo - Original Message - From: "sunny2607" <[EMAIL PROTECTED]> To: Sent: Friday, December 01, 2006 1:46 PM Subject: [iText-questions] Invalid characters appea

Re: [iText-questions] table of contents - RTF

2006-12-01 Thread Smiley, Stuart A.
Henry, This is working for me using itext-1.4.7: Paragraph toc = new Paragraph(); paragraph.add((new RtfTableOfContents( "RIGHT CLICK HERE AND SELECT \"UPDATE FIELD\" TO UPDATE"))); document.add(toc); // for each chapter Chunk titleChunk = new Chunk("Some Chapter Title",chapterFont)

[iText-questions] Need table splitting. Column headings should repeat but the main table name should not.

2006-12-01 Thread Nishanth
Hi, I am using iText library. It is very simple and easy to use. I need your help for the following. I have a table. All the columns have header names. Above the table I want to have a heading (say, the table name). I don’t know how many rows will go into the table upfront. I want to have the

[iText-questions] table of contents - RTF

2006-12-01 Thread Henry Lu
Is there anyone who can show me an working example of "Table of contents" in RTF? -Henry - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opin

Re: [iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method.

2006-12-01 Thread sunny2607
Hi. Thanks for the information, however i am in trouble now as i thought it was possible using itext. Regards Sunny Bruno Lowagie (iText) wrote: > > Paulo Soares wrote: >> It's not possible to change the properties of Designer docs. > > Read also: > http://itext.ugent.be/library/question.php?

[iText-questions] Invalid characters appearing when trying to read the field names of a PDF file.

2006-12-01 Thread sunny2607
Hi. I want to know whether its possible using iText to know the names of the fields in an acroform created in Acrobat designer dynamically. My requirement is that if i just have a pdf file as an input and i want to determine the names of fields on that pdf. Using the sample code on iText's offici

Re: [iText-questions] Invalid characters appearing when trying to read the field names of a PDF file.

2006-12-01 Thread sunny2607
Please check the attached pdf file as well. http://www.nabble.com/file/4393/SamplePDF2.pdf SamplePDF2.pdf -- View this message in context: http://www.nabble.com/Invalid-characters-appearing-when-trying-to-read-the-field-names-of-a-PDF-file.-tf2737646.html#a7637884 Sent from the iText - General

[iText-questions] Import RTF document

2006-12-01 Thread Smiley, Stuart A.
I am using RtfWriter2 to create a document based on a number of database records. That part is working great. There is a static introduction to the document that I thought I could import using the importRtfDocument method. I must be leaving something out, because the introduction never gets a

Re: [iText-questions] Pile up the character string of the date on theimage of the signature.

2006-12-01 Thread Paulo Soares
Look for PdfSignatureAppearance.getLayer(2). I returns a template that you can fill as you like. Paulo - Original Message - From: <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Friday, December 01, 2006 12:42 PM Subject: Re: [iText-questions] Pile up the char

Re: [iText-questions] Unembed fonts from existing PDF

2006-12-01 Thread Paulo Soares
- Original Message - From: "Andrievsky Dmitry" <[EMAIL PROTECTED]> To: Sent: Friday, December 01, 2006 12:22 PM Subject: [iText-questions] Unembed fonts from existing PDF > Hello itext-questions, > > I use iText to fill number of one-paged form and then combine them > into single mul

Re: [iText-questions] Pile up the character string of the date on theimage of the signature.

2006-12-01 Thread [EMAIL PROTECTED]
Thanks, Poulo. I'm sorry. What does the layer 2 appearance mean? What code do you write? Could you teach a little. Thanks in advance! Paulo Soares wrote: > Nothing prevents you to create a layer 2 appearance with whatever you want > inside. > > Paulo > > - Original Message - > From:

[iText-questions] Unembed fonts from existing PDF

2006-12-01 Thread Andrievsky Dmitry
Hello itext-questions, I use iText to fill number of one-paged form and then combine them into single multi-paged document. I get form, fill it using PdfStamper and create temporary output file. Then I get all the temporary files and concatenate them using PdfCopy (as in example from

Re: [iText-questions] Pile up the character string of the date on theimage of the signature.

2006-12-01 Thread Paulo Soares
Nothing prevents you to create a layer 2 appearance with whatever you want inside. Paulo - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Friday, December 01, 2006 11:50 AM Subject: [iText-questions] Pile up the character string of the date on theimage of the signature. > De

[iText-questions] Pile up the character string of the date on the image of the signature.

2006-12-01 Thread [EMAIL PROTECTED]
Dear all, Please can anyone help me with this issue? It can speak English a little. There is a task. I want to pile up the character string of the date on the image of the signature beautifully. I want to display the character string of the date at the position of the center of the signature ima

Re: [iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method.

2006-12-01 Thread Bruno Lowagie
Paulo Soares wrote: > It's not possible to change the properties of Designer docs. Read also: http://itext.ugent.be/library/question.php?id=31 http://www.nabble.com/Re%3A-Read-and-Manipulate-existing-PDF-cont.-p7618848.html http://www.nabble.com/Re%3A-Read-and-Manipulate-existing-PDF-cont.-p762227

Re: [iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method.

2006-12-01 Thread Paulo Soares
It's not possible to change the properties of Designer docs. Paulo - Original Message - From: "sunny2607" <[EMAIL PROTECTED]> To: Sent: Friday, December 01, 2006 10:01 AM Subject: Re: [iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method

Re: [iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method.

2006-12-01 Thread sunny2607
Hi, I have uploaded the PDF file. Thanks Paulo Soares wrote: > > Post a link to the PDF. > > Paulo > > - Original Message - > From: "sunny2607" <[EMAIL PROTECTED]> > To: > Sent: Friday, December 01, 2006 8:20 AM > Subject: [iText-questions] Trouble in attempting to change the field

Re: [iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method.

2006-12-01 Thread Paulo Soares
Post a link to the PDF. Paulo - Original Message - From: "sunny2607" <[EMAIL PROTECTED]> To: Sent: Friday, December 01, 2006 8:20 AM Subject: [iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method. > > Hi. > > My task at hand is to chan

Re: [iText-questions] write pdf file to disk

2006-12-01 Thread muleiro
Thanks Bruno. Finally I solved it using a jFileChooser and letting the user to choose where to create the pdf file. Best regards and thank you for your help, iago Bruno Lowagie (iText) wrote: > > muleiro wrote: >> Yes, that's true, but i think that changing the JVM working directory it >> isn't

[iText-questions] Trouble in attempting to change the field properties using setFieldProperty() method.

2006-12-01 Thread sunny2607
Hi. My task at hand is to change the various field properties like foreground color, back color, font name etc for the fields of an existing pdf file. I understand that there is a method setFieldProperty(...) and subsequently calling the regenerateField() method for doing the same. This st