RE: [iText-questions] Best (easiest?) way to add a page

2006-02-01 Thread Kalra, Ashwani
If its acroform pdf , you can have a look at the pdf stamper example.   http://itextdocs.lowagie.com/tutorial/general/copystamp/   /Ashwani From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Wooten, BryanSent: Thursday, February 02, 2006 4:37 AMTo: itext-questions@lists.sourc

[iText-questions] Best (easiest?) way to add a page

2006-02-01 Thread Wooten, Bryan
I have an existing PDF form called student.pdf and a variable list of students. For each student I would like to open the pdf and populate it with data like name, address, grade, etc. For lack of a  better word I want to concatenate these files into one multi-page pdf  and return that to

Re: [iText-questions] validation via javascript

2006-02-01 Thread Udo Rader
On Wed, 2006-02-01 at 21:04 +0100, Udo Rader wrote: > Hi, > > I'd like to test the values of certain acroform fields using the AR built > in validation methods, such as AFDate_KeystrokeEx( someDateFormat ). > > What I've learned so far from reading Adobe's JS guide is that one has to > do this

Re: [iText-questions] How to fill a form and keep the existing fields on the PDF?

2006-02-01 Thread Paulo Soares
Repeating the same question in another mailing list without advancing more information won't get you near the solution. A couple of questions: Are you flattening the fields? Do you have fields to start with? Are you providing the right field names? Are the fields being filled correctly but are n

[iText-questions] problem opening pdf with attachment

2006-02-01 Thread Rynhard Roos
Hi I have created a pdf document with a security policy that encrypts only attachments. I then attached a file to the pdf. When I now try to open the document with encrypted attachment using a PdfReader, the following error is thrown: 2006-02-01 16:29:40,709 INFO [STDOUT] java.lang.NullPointerEx

[iText-questions] Remove me from iText's mailing list

2006-02-01 Thread rohit gangwal
Please remove me from iText's mailing list.  My emailis[EMAIL PROTECTED] Thanks What are the most popular cars? Find out at Yahoo! Autos

[iText-questions] TTF/AFM font details

2006-02-01 Thread Peter Brant
Hi Paulo, I'm looking to extract usWeightClass, usWidthClass, yStrikeoutSize, and yStrikeoutPosition from the 'OS/2' table and underlinePosition and underlineThickness from the 'post' table. It would be easy enough to hack that into a local copy of TrueTypeFont, but I'd like to avoid that if poss

[iText-questions] How to fill a form and keep the existing fields on the PDF?

2006-02-01 Thread philip89
Hi There, I have a PDF Form with some fields. I tried the stamper example (using AcroFields) to fill my form out with some data. The resulting PDF doesn't have any fields. Is there any way to fill out the form and still have the original fields? Thanks Philip ---

[iText-questions] Feeding itext with input byte stream and open it in rtf editor.

2006-02-01 Thread CM
Hi All, I just downloaded itext and run examples. "RtfWriter2 rtf =3D RtfWriter2.getInstance(document, new FileOutputStream("headerfooter.rtf"));" writes to file rtf, which is fine. Is it possible to feed itext with a kind of byte input and open the stream in rtf editor? My project includes readin

[iText-questions] validation via javascript

2006-02-01 Thread Udo Rader
Hi, I'd like to test the values of certain acroform fields using the AR built in validation methods, such as AFDate_KeystrokeEx( someDateFormat ). What I've learned so far from reading Adobe's JS guide is that one has to do this on the _javascript_ level. So here's what I do: ---

[iText-questions] iText Examples Source

2006-02-01 Thread Donthy Family
Hi, I need to work offline to develop few programs for a Charity organization that I am trying to help with. I greatly appreciate if some one monitoring this e-mail a/c can send me a zip file with all of the examples source code. Thanks, Satheesh ---

Re: [iText-questions] How hard is it to...

2006-02-01 Thread Leonard Rosenthol
At 10:17 AM 2/1/2006, David Thielen wrote: How hard is it to (and if there's a url for a tutorial, please post): 1. Insert one pdf inside another pdf (ie pages 1 - 4 I create, pages 5, 6 are from an existing 2 page pdf, pages 7 - 9 I create)? Trivial - look at the Concat example.

Re: [iText-questions] javascript functions in PDF

2006-02-01 Thread Bruno Lowagie
Sanjeev wrote: Hi all. I am creating a PDF document dynamically and need to add validations for different datatypes. Is there a concept of javascript functions in PDF? Yes. http://partners.adobe.com/public/developer/pdf/topic_js.html Just like we have a set of functions in .js file and we

[iText-questions] javascript functions in PDF

2006-02-01 Thread Sanjeev
Hi all. I am creating a PDF document dynamically and need to add validations for different datatypes. Is there a concept of _javascript_ functions in PDF? Just like we have a set of functions in .js file  and we include it in HTML to do client side validations, do we have anything similar in PDF? 

[iText-questions] Re: Iterating over a document..

2006-02-01 Thread Bruno Lowagie
Madhav Inamti wrote: Bruno, I have posted to the list. My name was mistyped as Madi. Your original question was sent to the mailing list. I replied to you and to the mailing list. Then you asked another question without CC to the mailing list. Just like you did now. I don't like that. When

[iText-questions] How hard is it to...

2006-02-01 Thread David Thielen
Hi; How hard is it to (and if there's a url for a tutorial, please post): 1. Insert one pdf inside another pdf (ie pages 1 - 4 I create, pages 5, 6 are from an existing 2 page pdf, pages 7 - 9 I create)? 2. Convert a pdf into a bitmap (page by page)? Thanks - dave David Th

Re: [iText-questions] Converting WMF and a TXT file into PDF by overlapping

2006-02-01 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: Hi Thanks for your suggestion Right now , I have written a program which uses Image class and adds the WMF image to a blank PDF and then I read the text file.Since the text in the text file is already aligned with respect to the wmf image, I am just adding each line t

[iText-questions] HTML to PDF - Font Type and Font Size

2006-02-01 Thread Luciano Rodrigues
  I try to parse a HTML file to PDF file, this is perfect.   But I have a problem with my font name and font size. Because PDF file  was  generate all text with "Arial 12", but I need to chance font size to '10 pt'.   I didn´t use Paragraph or Phase. I use 'parser.parse(ips, new SAXmyHtmlHandler(

RE: [iText-questions] Converting WMF and a TXT file into PDF by overlapping

2006-02-01 Thread ravi2082
Hi Thanks for your suggestion Right now , I have written a program which uses Image class and adds the WMF image to a blank PDF and then I read the text file.Since the text in the text file is already aligned with respect to the wmf image, I am just adding each line to a Paragraph object and d

Re: [iText-questions] How do you navigate a Document

2006-02-01 Thread Bruno Lowagie
Madi wrote: I am looking to navigate a Document... to go over all the pages of the Document. Is there a way to iterate over a Document ? You'll have to explain better. Do you want to set the duration of each page so that you get a slide show? To you want to make the thumbnails and page labels