Re: [iText-questions] Javascript disappears after removing XFA, and Compression.

2005-04-02 Thread Leonard Rosenthol
At 10:32 AM 4/2/2005, Chris Groenewald wrote: I've seen in the mail archives that one can remove the XFA from a Acrobat 7 form to make filling of the form possible. And it works too. But I've also seen one nasty side effect: The client-side JavaScript in the PDF goes missing. That is cor

Re: [iText-questions] Outputting PS

2005-04-02 Thread Leonard Rosenthol
At 02:50 PM 4/2/2005, Justin Lee wrote: Is there any way to output PS? Not with iText itself, no. There are other products you could add to your workflow to convert the PDF from iText into Postscript, however. We're building a PDF on the server, sending to a client which then nee

[iText-questions] Outputting PS

2005-04-02 Thread Justin Lee
Is there any way to output PS? We're building a PDF on the server, sending to a client which then needs to print that PDF (currently in a byte[] coming from the server/servlet) but my coworker isn't having much luck. Any suggestions on how to get that done? Thanks. -- cheeser You can find

Re: [iText-questions] Javascript disappears after removing XFA, and Compression.

2005-04-02 Thread Chris Groenewald
Hi again. Thanks for the quick reply! :) Well, Designer 7 can save documents in the 1.5 format. And I've tested filling those forms with iText aswell. I find that I still need to remove XFA for it to work. And still the JavaScript is gone after the process. :( As for adding the JavaScript. I can

Re: [iText-questions] Javascript disappears after removing XFA, and Compression.

2005-04-02 Thread Paulo Soares
- Original Message - From: "Chris Groenewald" <[EMAIL PROTECTED]> To: Sent: Saturday, April 02, 2005 3:32 PM Subject: [iText-questions] Javascript disappears after removing XFA, and Compression. > Hi all, > > I've seen in the mail archives that one can remove the XFA from a Acrobat 7 >

[iText-questions] Re: how view a pdf file?

2005-04-02 Thread Marco
"Roger Misteli" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] process = Runtime.getRuntime().exec("cmd /c start \"\" \"" + fileName + "\""); Thank you. The problem is that this works only in Windows, not in Linuz or other OS. --

[iText-questions] reading html document lines

2005-04-02 Thread Motiejus
I noticed that iText reads only 80 simbols of each line of html document and others are just ignored. Maybe somebody knows how to change this? Thanks, Motiejus --- This SF.net email is sponsored by Demarc: A global provider of Threat Manageme

[iText-questions] Re: how view a pdf file?

2005-04-02 Thread Marco
> don't know if this works for java but if you "call" your PDF from within a > batch file the associated application is started on Windows This is not ok for me, because: 1) Java program knows the name of pdf file when run; but I don't. 2) If I use Linux, or Apple... a batch file doesn't work.

[iText-questions] Javascript disappears after removing XFA, and Compression.

2005-04-02 Thread Chris Groenewald
Hi all, I've seen in the mail archives that one can remove the XFA from a Acrobat 7 form to make filling of the form possible. And it works too. But I've also seen one nasty side effect: The client-side JavaScript in the PDF goes missing. Is there any way to preserve the JavaScript in the docum

RE: [iText-questions] Re: Re: Get the actual x,y in page

2005-04-02 Thread Paulo Soares
You can always use absolute positioning and it will go to the next line if you use ColumnText. It would help to see a picture of the result you are seeking. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Marco > Sent: Friday, April 01, 2005 11:

RE: [iText-questions] fix needed for barcode39 iText 1.2

2005-04-02 Thread Paulo Soares
The inter char gap is a narrow bar. I don't understand your question. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Huub Daems > Sent: Friday, April 01, 2005 3:52 PM > To: 'itext-questions@lists.sourceforge.net' > Subject: [iText-questions] fi

[iText-questions] PdfReader speed up

2005-04-02 Thread Krunoslav Pozega
Hi, I have a need to find out sizes (Rectangles) from all pages of a PDF document. Since the PDF documents are quite large ( > 10 M), can it be done without reading the entire document into memory with PdfReader ? Kruno _ FREE pop-up b

Re: [iText-questions] Printing large tables

2005-04-02 Thread Paulo Soares
See the example wide_table.java at http://itextpdf.sf.net. - Original Message - From: "Neelesh Chitnis" <[EMAIL PROTECTED]> To: Sent: Friday, April 01, 2005 4:08 PM Subject: [iText-questions] Printing large tables > Hi gurus, > > I inherited itext code from one of my ex colleague. Now

Re: [iText-questions] reading html document lines

2005-04-02 Thread Bruno Lowagie
Motiejus wrote: I noticed that iText reads only 80 simbols of each line of html document ? and others are just ignored. I have never seen this behaviour. Remark that iText doesn't read the HTML. Your default XML-parser does all the reading. br, Bruno -

Re: [iText-questions] Html to PDF

2005-04-02 Thread Bruno Lowagie
Poonam Chodankar wrote: Hi , I am looking out for a code which will read HTML file and convert to PDF file Please let me know as soon as possible http://www.easysw.com/htmldoc/ --- SF email is sponsored by - The IT Product Guide Read honest & cand

[iText-questions] Re: Re: Get the actual x,y in page

2005-04-02 Thread Marco
I can't use Paragraph, because my equations have high and low part; when I go to a new line, I must leave a space=previous low+actual high: I can go to a new line only after the next is defined. But this is not a great problem, because I can add Pharagraph to Document after define the next. My