Re: [iText-questions] Find a string in pdf and the page number where it is present in a PDF using Itext 5.1.2

2011-11-09 Thread Kevin Day
the parser package has text extraction capabilities. You could easily do what you are asking using that. -- View this message in context: http://itext-general.2136553.n4.nabble.com/Find-a-string-in-pdf-and-the-page-number-where-it-is-present-in-a-PDF-using-Itext-5-1-2-tp4021131p4022347.html Sent

Re: [iText-questions] Creation of an Embedded PDF Search Index

2011-11-09 Thread Leonard Rosenthol
Only Adobe products can do this as the Search Index file format is private to Adobe. Leonard On 11/9/11 2:56 PM, "Michael Birkenmaier" wrote: > >Deperatly I'm searching for a possibility to >programmatically insert a search index into existing PDF files >(to speed up searches). > >Example: >Ma

Re: [iText-questions] question about extracting text with itext

2011-11-09 Thread Leonard Rosenthol
1) Bookmarks in a PDF do NOT HAVE TO be associated with content – they can refer to any Action as well. 2) Bookmarks that do point to content, normally only point to the START of the content – there is no END. 3) UNLESS the PDF is tagged and structured properly, and the bookmarks are connected

Re: [iText-questions] Generate 2D Barcode at Acroform

2011-11-09 Thread Leonard Rosenthol
You can use a Barcode field in PDF. I don't know if iText supports the creation of one, but it's part of the PDF language. Leonard On 11/9/11 8:01 AM, "bae...@fi2.ch" wrote: >I am using iText to generate acroforms. Now, we want to add a barcode >feature to the pdf which should work in the foll

[iText-questions] Creation of an Embedded PDF Search Index

2011-11-09 Thread Michael Birkenmaier
Deperatly I'm searching for a possibility to programmatically insert a search index into existing PDF files (to speed up searches). Example: Manually you do it in Adobe Acrobat Standard via the menus commands Advanced\Document Processing\Manage Embedded Index\Embed Index. Is it possible with iT

[iText-questions] Find a string in pdf and the page number where it is present in a PDF using Itext 5.1.2

2011-11-09 Thread Natarajan, Swaminath
Hi , I am using Itext 5.1.2 for digitally signing my pdf documents. I am able to insert the signature successfully in appropriate place if I know the exact page number. The page number to insert the signature will vary in different pdf documents. The only way I know where to insert the signatu

Re: [iText-questions] [Digital-Signature] Set appearance and put signature in different moments

2011-11-09 Thread Niccolÿfffff2 Greppi
Works!! Thanks a lot guy! Da: mkl A: itext-questions@lists.sourceforge.net Inviato: Mercoledì 9 Novembre 2011 10:40 Oggetto: Re: [iText-questions] [Digital-Signature] Set appearance and put signature in different moments Ray1184 wrote: > 2. After get the hash

Re: [iText-questions] question about extracting text with itext

2011-11-09 Thread Kevin Day
David- There are many examples of code using iText - do some quick google searches for itext bookmarks and you'll find them. - K -- View this message in context: http://itext-general.2136553.n4.nabble.com/question-about-extracting-text-with-itext-tp4019583p4019884.html Sent from the iText - Gen

Re: [iText-questions] question about extracting text with itext

2011-11-09 Thread 1T3XT BVBA
On 9/11/2011 14:51, david guede wrote: > Can you just send me an example ? Just go to the book page: http://itextpdf.com/book/ > I am planning to use the free java version of iText This means that you're going to publish your own source code under the AGPL too. Please let us know when where you

Re: [iText-questions] Adding page number with pdf stamper increases the pdf size

2011-11-09 Thread ashish
I think ColumnText is better option as the size is now reduced from 2.89MB to 1.81 MB. ColumnText.showTextAligned( stamp.getOverContent(i), Element.ALIGN_CENTER, new Phrase(String.format("Page %d/%d", i, totalPages)),

[iText-questions] Adding page number with pdf stamper increases the pdf size

2011-11-09 Thread ashish
Hi, I am adding the page numbers to my existing PDFs using stamper as below, BaseFont bf = BaseFont.createFont(BaseFont.TIMES_ROMAN, BaseFont.WINANSI, BaseFont.NOT_EMBEDDED); PdfContentByte cb1; PdfImportedPage page;

Re: [iText-questions] question about extracting text with itext

2011-11-09 Thread david guede
Thanks, but I do not have the book and before buying the book, I want to have a go with iText ti be totally sure to choose the right java lib for my purpose... Can you just send me an example ? I am planning to use the free java version of iText Thanks in adavance David 2011/11/9 1T3XT BVBA

Re: [iText-questions] Building a pdf with tables that break across multiple pages

2011-11-09 Thread Kiran.Karra
Dear Erik Pfingsten Please post the solution you found. This will be very helpful for me and many others. Thanks in advance. -- View this message in context: http://itext-general.2136553.n4.nabble.com/Building-a-pdf-with-tables-that-break-across-multiple-pages-tp2167032p4016062.html Sent from

[iText-questions] Generate 2D Barcode at Acroform

2011-11-09 Thread baenni
I am using iText to generate acroforms. Now, we want to add a barcode feature to the pdf which should work in the following way: 1) The user fills-out the text fields in the pdf file 2) By pressing a buton, a barcode on the pdf file shall be genarated which includes some data of the text fields f

Re: [iText-questions] question about extracting text with itext

2011-11-09 Thread 1T3XT BVBA
On 9/11/2011 13:16, david guede wrote: > If so, could you please send me an example or tell me where I could > find one. Read "iText in Action - Second Edition", section 7.2.2 "Retrieving bookmarks from an existing document." --

[iText-questions] question about extracting text with itext

2011-11-09 Thread david guede
Hi everybody, I have never used iText and need to manipulate contents from pdf files. Basically, I have got one pdf file called sample.pdf In this file, I have got some bookmarks (corresponding to the sections of my file). This can be an example : Sample.pdf SAMPLE 1 Introduction 1.1 In

Re: [iText-questions] [Digital-Signature] Set appearance and put signature in different moments

2011-11-09 Thread mkl
Ray1184 wrote: > 2. After get the hash and signing it, insert the signature manually... > this sounds good, but How can I do it? Andreas Kühne in one of those messages references an open source signing server which implements that approach. Simply take a look at the sources. Regards, Michael --