Re: [iText-questions] Get a pdf file and read it word by word tocompare with the key value

2006-10-23 Thread santhosh mathai
Thanks  Mark.   On 10/24/06, Mark Storer <[EMAIL PROTECTED]> wrote: There's an entry in the FAQ that covers this, though a little indirectly.  The comment I added is more relevant:   http://itext.ugent.be/library/question.php?id=48   It is Very Hard to read text out of a PDF.  Acrobat does a gre

[iText-questions] Creating Customized JAR file of iText for an Application

2006-10-23 Thread M.Rameshkumar
Hi,I want to make a customized jar file (only required files from the iText Library/Source files) for my application. Reason is simply to reduce the size of the library file. How will I know what are the classes I should add and what to remove? Any suggestion/Tips would be really great. Basically t

Re: [iText-questions] Get a pdf file and read it word by word tocompare with the key value

2006-10-23 Thread Mark Storer
There's an entry in the FAQ that covers this, though a little indirectly.  The comment I added is more relevant:   http://itext.ugent.be/library/question.php?id=48   It is Very Hard to read text out of a PDF.  Acrobat does a great deal behind the scenes to make it look easy, but it's not.  I

Re: [iText-questions] Named Pages - Form Templates

2006-10-23 Thread Alan
Thanks Paulo -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paulo Soares Sent: Tuesday, 24 October 2006 6:02 AM To: Post all your questions about iText here Subject: Re: [iText-questions] Named Pages - Form Templates It can only be done in PdfStamper dir

Re: [iText-questions] Named Pages - Form Templates

2006-10-23 Thread Paulo Soares
It can only be done in PdfStamper directly in the catalog. Paulo - Original Message - From: "Alan" <[EMAIL PROTECTED]> To: "'Post all your questions about iText here'" Sent: Monday, October 23, 2006 5:16 AM Subject: [iText-questions] Named Pages - Form Templates > Hi All, > > In Acro

[iText-questions] XML to PDF Query

2006-10-23 Thread zenith cool
Hi EVeryone,   I have a xml template with different tags where the values get inserted from another xml document and a pdf file generated with all the values in the end. In the XML template, I have created a table with the tags at http://itext.sourceforge.net/itext.dtd . The question is that I don

[iText-questions] how to set the "application" document property

2006-10-23 Thread steve poling
Hi, When I generate a PDF then open it in Adobe Acrobat, the "Document Properties" dialog has a "Description" that shows, Title, Author, Subject, Keywords in text boxes. Then Created, Modified, and Application appear as text labels. The Created and Modified dates are just fine, but the "Applic

[iText-questions] TIFF Decompression problems

2006-10-23 Thread Vedran Divkovic
Hi, I have some problems with a tiff-compression. What I use is tiff2pdf converter. For most tiff’s (b&w FaxG4) everything’s working just fine. BUT with all colored tiff’s, I get IllegalArgumentException or RuntimeException (see bottom please). I can open that tiff with IrfanView, so t

Re: [iText-questions] concationate multiple PDF documents that are generated in code

2006-10-23 Thread Bruno Lowagie
Tony Akocs wrote: > I display the consolidated documents in a browser in a ServletOutputStream. OK, but you use the workaround for MSIE, do you? In that case you create a ByteArrayOutputStream first. > I do not have a byte[ ], just the Document object I think we are talking a different language.

Re: [iText-questions] concationate multiple PDF documents that are generated in code

2006-10-23 Thread Tony Akocs
I display the consolidated documents in a browser in a ServletOutputStream.   I do not have a byte[ ], just the Document object   Here is what I would like to do I generate the PDF Document, then place the Document in a java.util.List. After I am done populating the List with PDF Documents. I want

Re: [iText-questions] Urgent Help Requited Images in PDF HeaderandFooter

2006-10-23 Thread Patrick Mugabe
Hi, I have used an image for the footer in most of the PDF docs I generate with iText. Below is the code I used for the footer. It also applies to the Header. I understand you are using iTextsharp, I use iText and Java but I am sure the concept is the same. public final void createDocume

[iText-questions] TIFF fix

2006-10-23 Thread Bruno Lowagie
I am cleaning up my mailbox and itext.ugent.be after being on vacation for two weeks. I notice there was a bugfix on this page: http://itext.ugent.be/library/source.php?file=299 Maybe this was already taken care of in the current CVS version, maybe not. I post this as a note to myself so that I don

[iText-questions] Get a pdf file and read it word by word to compare with the key value

2006-10-23 Thread santhosh mathai
Hi friends,   This is santhosh from Bangalore.I am new in iText development .My requirement is like this   1. Get a pdf file and read it word by word to compare with the key value.(One ArraList contains the key values in String format)   2. If the key value matches to the word read from pdf, then

Re: [iText-questions] embedded video annotation

2006-10-23 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Dave Brown > Sent: Monday, October 23, 2006 9:34 AM > To: itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] embedded video annotation > > Hi Thanks for your reply, But could

[iText-questions] rtf reports

2006-10-23 Thread muleiro
Can i create .rtf report files from Java code using jrxml report templates created with iReport? Does anybody know how XmlToRtf class works? Any suggestion would be appreciated. Thank you, Iago Muleiro -- View this message in context: http://www.nabble.com/rtf-reports-tf2493221.html#a6950822 S

Re: [iText-questions] iText XmlParser - Watermark

2006-10-23 Thread tludde at yahoo.com
Thanks for you speedy reply!   I have now extended the handler class:   if (name.Equals("watermark")) { Image pic = Image.GetInstance(attributes["filename"]); Watermark nWatermark = new Watermark( pic, 200, 420); document.Add(nWatermark); }     This works okay on all pages except the f

Re: [iText-questions] embedded video annotation

2006-10-23 Thread Dave Brown
Hi Thanks for your reply, But could you explain futher ? I'm not folllowing you.. I understand from you other reply To control the layout of multiple movie annotations with a sequential approach I should use PdfCellEvent ? Could you futher explain that to please.. If you could give me a quick

Re: [iText-questions] xml to rtf help (XmlToRtf problem?)

2006-10-23 Thread muleiro
I'm getting no error message and no exceptions. Just the file myNewReport.rtf empty...and i don't know why Thanks, Iago Muleiro Mark Hall-6 wrote: > > > On 20.10.2006, at 12:00, Iago wrote: > >> Hi, >> I'm new on iText capabilities and i'm a bit lost. >> I explain what i want to do and i can'

Re: [iText-questions] concationate multiple PDF documents that are generated in code

2006-10-23 Thread Bruno Lowagie
Tony Akocs wrote: > I generate multiple PDF Documents in my code and display them one at a time. Define 'display'. You send them to a browser in a ServletOutputStream? > I want to be able to add them to a List object Define 'them'. Do you mean you want to add byte[] to a List object? Is this Lis

[iText-questions] concationate multiple PDF documents that are generated in code

2006-10-23 Thread Tony Akocs
I generate multiple PDF Documents in my code and display them one at a time. I want to be able to add them to a List object and when I'm done populating the list add them together in one master PDF Document to display to the user. Can this be done. I do not want to have to save these PDF files to t

Re: [iText-questions] iText XmlParser - Watermark

2006-10-23 Thread Bruno Lowagie
tludde at yahoo.com wrote: > Is it possible to add a watermark to a PDF using XMLParser (or add a > image as a background to a table)? The best way to add watermarks is by using page events (added to the PdfWriter). If you want to let the XMLParser add the page event, you need to adapt the Handle

[iText-questions] iText XmlParser - Watermark

2006-10-23 Thread tludde at yahoo.com
Is it possible to add a watermark to a PDF using XMLParser (or add a image as a background to a table)?   regards Ludvig Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business. - Using Tomcat