[iText-questions] Need help with pdf annotations

2005-03-23 Thread garettDaBland
I have a pdf(s) with a PdfAnnotation.createFreeText() object. I need to find it in the pdf, and then adjust it. the annotation is always on the first page, and always has the same "T" value.   1. which method would be best to pursue, pdfStamper or pdfCopier or xxx 2. where should I go to fin

RE: [iText-questions] Print half-size Ms-Word booklet ATTENTION: NEW PROGRAM AVAILABLE

2005-03-23 Thread Bill Ensley
Hello all, I have an internal program that I wrote for imposing PDF's and I have been planning for some time to package it up and give it back to the project. This post motivated me to give you at least something. The source is still too messy to give back, but I have included a link to an exec

Re: [iText-questions] Set Check Boxes

2005-03-23 Thread Paulo Soares
setField("Yes") - Original Message - From: "Gilberto Fres" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 23, 2005 2:49 PM Subject: [iText-questions] Set Check Boxes > Hi, > > > > I have a question on how I can set a check box on. I read in > one the mail that Paulo said u

Re: [iText-questions] adding pdfptable to existing form

2005-03-23 Thread Paulo Soares
PdfStamper.getOverContent() and PdfStamper.getUnderContent(). You'll have to place the table at an absolute postion. see the example stamped.java at itextpdf.sf.net. - Original Message - From: "Mark C" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 22, 2005 8:38 PM Subject: [iText-question

Re: [iText-questions] Re: underlined text at an absolute position

2005-03-23 Thread Paulo Soares
ColumnText.showTextAligned() will underline the text. - Original Message - From: "Bruno Lowagie" <[EMAIL PROTECTED]> To: "maarten" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, March 23, 2005 11:09 AM Subject: [iText-questions] Re: underlined text at an absolute position > maarten wrote: >

Re: [iText-questions] Re: [iText-questions] setViewerPreferences(FitWindow|CenterWindow) doesn't seem to have any effect

2005-03-23 Thread Paulo Soares
- Original Message - From: "Leonard Rosenthol" <[EMAIL PROTECTED]> To: "Jeff Buhrt" <[EMAIL PROTECTED]>; Sent: Wednesday, March 23, 2005 3:18 PM Subject: [iText-questions] Re: [iText-questions] setViewerPreferences(FitWindow|CenterWindow) doesn't seem to have any effect > At 03:19 PM 3

Re: [iText-questions] tables in paragraphs + setKeepTogether

2005-03-23 Thread Paulo Soares
If you are talking about Table anything (wrong) can happen. - Original Message - From: "todwith1d" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 22, 2005 8:24 PM Subject: [iText-questions] tables in paragraphs + setKeepTogether > Hi All > > Is there is an issue with tables in paragraphs

Re: [iText-questions] FDF merging

2005-03-23 Thread Paulo Soares
It will probably work, there's no distinction made between comments and other annotations. - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Wednesday, March 23, 2005 1:50 PM Subject: [iText-questions] FDF merging > Hi, > > PdfStamper.addComments() works fine for Stamp type but

Re: [iText-questions] Push Button Submit Form Dynamic

2005-03-23 Thread Paulo Soares
That's alot of work for something that should already be there. Send me one of those (small) pdf so that I can advise you better. - Original Message - From: "Guillermo Odone" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 23, 2005 4:41 AM Subject: [iText-questions] Push Button Submit For

[iText-questions] Set Check Boxes

2005-03-23 Thread Gilberto Fres
Hi,       I have a question on how I can set a check box on.  I read in one the mail that Paulo said use the AcroFields.getAppearanceStates.  This function return a string array of length of 1 and the value "Yes".  But I don't see, how I can set the check box on, because I don't

[iText-questions] [encoding problem] some specific char like apostrophe become empty square

2005-03-23 Thread L. Dejoux
Hi,   The text i'm trying to insert to my RTF file contents some specific characters like apostrophe. (Actually the text come from a copy/past from MS Word it is stocked in a MySql DB and recover by my java pg to be export in a rtf file) Those specific characters are not interpreted correctly by i

Re: [iText-questions] Break page, absolute position

2005-03-23 Thread Paulo Soares
Object placed at absolute positions won't split automatically and go to next page. I'm just guessing, I've no idea what you mean by "object disappearing". - Original Message - From: "Aloizio Pereira da Silva" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 22, 2005 1:03 PM Subject: [iText-q

[iText-questions] Re: [iText-questions] setViewerPreferences(FitWindow|CenterWindow) doesn't seem to have any effect

2005-03-23 Thread Leonard Rosenthol
At 03:19 PM 3/22/2005, Jeff Buhrt wrote: PdfWriter's setViewerPreferences(PdfWriter.FitWindow|PdfWriter.CenterWindow) doesn't seem to change the settings seen in File->Print from inside the browser. Of course not. Those are options for VIEWING - NOT for Printing. Is there a way t

[iText-questions] Print half-size Ms-Word booklet on 8.5"x11" paper

2005-03-23 Thread Lynn Allan
Summary of a long email: I'm trying to get a Ms-Word 2003 half-size booklet to print out such that it uses a full-page sheet of letter paper. I haven't been able to get Ms-Word to do this. As described in the following, can this be done with your utility using "n-up imposition" such that the "top h

[iText-questions] FDF merging

2005-03-23 Thread itext
Hi, PdfStamper.addComments() works fine for Stamp type but are the other types like Line or Square supported ? Thanks, Thomas --- This SF.net email is sponsored by: 2005 Windows Mobile Application Contest Submit applications for Windows Mobil

Re: [iText-questions] Versions of PDF

2005-03-23 Thread Leonard Rosenthol
At 07:49 AM 3/22/2005, Dheeraj_Nagpal wrote: Can you tell me which all versions of PDF is itext compatible with? 1.0 -> 1.6. (all of them). I need to extract bookmarks and want to know whether there are any restrictions that might be applicable because of the versions of PDF.

Re: [iText-questions] Break page, absolute position

2005-03-23 Thread Aloizio Pereira da Silva
I already solved this problem. I implemented the page break second x, y coordinates. I wanted to say "the object disappears". Thanks * * Federal University of Minas Gerais* * Departme

[iText-questions] Re: underlined text at an absolute position

2005-03-23 Thread Bruno Lowagie
maarten wrote: Hello, How can I add underlined text at an absolute position ? By drawing a line at an absolute position. I guess it's not possible to create a Paragraph or a Phrase and add it to the document at an absolute position ? Use ColumnText. http://www.lowagie.com/iText/tutorial/ch10.html#

[iText-questions] underlined text at an absolute position

2005-03-23 Thread maarten
Hello, How can I add underlined text at an absolute position ? I've seen how to add italic, bold or bolditalic text at an absolute position, by using the right TrueType font, like this: BaseFont arialItalic = BaseFont.createFont("ariali.ttf", BaseFont.WINANSI, BaseFont.EMBEDDED); cb.setFontAndSiz

[iText-questions] Could not start print job!!!!

2005-03-23 Thread Motiejus
Hello everybody!!! Some PDF files generated from html and printed from Acrobat Reader in Internet Explorer window beeps with error: "Could not start print job". Everything is fine then this document is saved to disk and then printed. Maybe anybody had met this problem in their life and know wher

[iText-questions] Push Button Submit Form Dynamic

2005-03-23 Thread Guillermo Odone
Hi, I wrote before asking for some example to create a push button to submit a form and (Bruno and Paulo told me about the PushButtonField Class), I took a look to the source of it and made my own code, cause actually I'm using the J# version based on IText 1.2.1 in which that class doesn't exis