Re: [iText-questions] Two fields with the same name into different page

2005-06-24 Thread Paulo Soares
field2.setPage(2) - Original Message - From: "wang yun" <[EMAIL PROTECTED]> To: Sent: Friday, June 24, 2005 4:35 PM Subject: [iText-questions] Two fields with the same name into different page Dear paulo, I have two text fields with the same name. But, I want to add the first one into

[iText-questions] UnsupportedOperationException

2005-06-24 Thread linhda
Hello everyone, In my code, console shows that error when I run following line code: bottom = table.bottom(); Could you please explain briefly for me about that Error? And how can I fix it? Thank you very much for your great help. Linh Da --

Re: [iText-questions] changing meta data information of pdf

2005-06-24 Thread Antoine
Leonard Rosenthol wrote: > At 5:12 PM -0700 6/23/05, Rakesh Raj wrote: > >> Now that i have learnt to change the metadata, i require to search >> for pdf >> files based on the metadata. >> >> pls help me create a search engine for pdf files only , based on the >> metadata. >> > > Writing

[iText-questions] Two fields with the same name into different page

2005-06-24 Thread wang yun
Dear paulo, I have two text fields with the same name. But, I want to add the first one into page 1 and add the second into page 2. Here is the code to add two fields into one page. How can I change it so that app2 will be moved into page 2. Thanks, PdfReader reader

Re: [iText-questions] xml -> pdf or html

2005-06-24 Thread Steve Appling
A few suggestions - YMMV: My main use for iText has been in the context of a Web Application. We chose to take our raw data, process it using a SAX parser, and render it into a layout format as XHTML. We can then present the XHTML document to the user in a browser for preview. The temporary

[iText-questions] font question

2005-06-24 Thread bruno
Hello all, as you may (or may not know) I am starting a book on iText. Before actually starting to write the text, I am making some code examples. So in the weeks and months to come, I will probably ask for your advice on different issues. For an example on Fonts, I want to have a document with bo

RE: [iText-questions] changing meta data information of pdf

2005-06-24 Thread Leonard Rosenthol
At 5:12 PM -0700 6/23/05, Rakesh Raj wrote: Now that i have learnt to change the metadata, i require to search for pdf files based on the metadata. pls help me create a search engine for pdf files only , based on the metadata. Writing a search engine is a non-trivial exercise (doing it

Re: [iText-questions] changing meta data information of pdf

2005-06-24 Thread bruno
Rakesh Raj wrote: Pls help me create a search engine for pdf files only , based on the metadata. This is not an iText related question. I think you are confusing free software with free consultancy. br, Bruno --- SF.Net email is sponsored b

RE: [iText-questions] changing meta data information of pdf

2005-06-24 Thread Rakesh Raj
hi, Thnaks for the answer bruno. more help required. I am a newbie. Now that i have learnt to change the metadata, i require to search for pdf files based on the metadata. pls help me create a search engine for pdf files only , based on the metadata. Regards Rakesh Raj -Or

[iText-questions] footnodes

2005-06-24 Thread f . friedmann
Hi all, is there an easy way to manage footnodes on creating an pdf? thanks frank --- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcas

Re: [iText-questions] images in RTF not aligning properly

2005-06-24 Thread Mark Hall
On Friday 24 June 2005 11:50, [EMAIL PROTECTED] wrote: > Both the paragraph and the image are center aligned. > > On Thursday 23 June 2005 10:53, [EMAIL PROTECTED] wrote: > > It seems that when an image is too wide and one specifies center > > alignment, > > it is in fact aligned left, so that ther

RE: [iText-questions] xml -> pdf or html

2005-06-24 Thread Fernando.Matomira
The usual way to do this is to use XSLT to convert directly to HTML, and XSLT to transform to XSL-FO which is given to Apache FOP to generate PDF (or many other formats). That’s what I doing for my PDF output.     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Do

RE: [iText-questions] images in RTF not aligning properly

2005-06-24 Thread Fernando.Matomira
Both the paragraph and the image are center aligned. -Original Message- From: Mark Hall [mailto:[EMAIL PROTECTED] Sent: Thursday, June 23, 2005 11:33 AM To: itext-questions@lists.sourceforge.net Cc: Mato Mira, Fernando (DIA EMEA/A) Subject: Re: [iText-questions] images in RTF not aligning

RE: [iText-questions] Writing Japanese in PDF file

2005-06-24 Thread Paulo Soares
If you don't want to be dependent on whether there's a CJK font pack installed or not you must embedd the font. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Friday, June 24, 2005 8:30 AM > To: itext-questions@lists.s

Re: [iText-questions] XML template -> PDF

2005-06-24 Thread Bruno Lowagie
fook-keong wrote: Hi, I want to generate a PDF file with a define XML template. Data will be obtained from the servlet and the data merging with the XMl template would be done. One problem I'm facing is that the PDF file would need a dynamic table in it and I'm not sure how to do it since I was

Re: [iText-questions] changing meta data information of pdf

2005-06-24 Thread bruno
Rakesh Raj wrote: hi all, can we change the metadata information like the author name etc. Reading existing metadata is done with getInfo in PdfReader. Changing metadata is done with setMoreInfo in PdfStamper. Search for these keywords in the mailinglist-archives and I'm sure you'll find an

Re: [iText-questions] Stamping.

2005-06-24 Thread bruno
Gareth Edwards wrote: I would like to know if it is possible to write stuff to previous pages in PDF document while generating the report. Kinda need something like writer.getDirectContent(pagenumber); I'm aware of stamping a file that has already been created, and templates, That would be

Re: [iText-questions] query

2005-06-24 Thread bruno
santosh kumar wrote: i want to extract text from the pdf iText is not designed for text extraction. br, Bruno --- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforwa

Re: [iText-questions] how to set a pdf file as non printable?

2005-06-24 Thread bruno
tamil nathan wrote: Hi! i want to set my newly generated PDF file as Non-Printed. That means the PDF file should not display the options print in the file menu and also in the menu form. so could you please help me to set this option? Yes, you need encryption. If you are creating the PDF

[iText-questions] changing meta data information of pdf

2005-06-24 Thread Rakesh Raj
hi all, can we change the metadata information like the author name etc. can some one help me on that. thanks and regards --- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps,

Re: [iText-questions] xml -> pdf or html

2005-06-24 Thread bruno
Doug James wrote: * Request for anyone's comments / suggestions / concerns. * There is a chance I could be asked to take a home grown XML document and create either html or pdf from it. Any pitfalls to watch out for or any suggestions on the best way to do the request? I don't know if I al

[iText-questions] Writing Japanese in PDF file

2005-06-24 Thread Sumeet.Palkar
Stuck with a wierd problem. Actually all Japanese problems are wierd as u know...   I am able to display the Japanese charatcers in the PDF file when using Japanese Regional Settings on Windows OS. But this Japanese text appears only when the Text is selected on the PDF file.When Changed

[iText-questions] how to set a pdf file as non printable?

2005-06-24 Thread tamil nathan
Hi!   i want to set my newly generated PDF file as Non-Printed. That means the PDF file should not display the options print in the file menu  and also in the menu form. so could you please help me to set this option?   Thank you.   Warm regards, Anbalagan.NSend instant messages to your