Re: [iText-questions] How to detect if the printing is working

2003-03-05 Thread Leonard Rosenthol
At 11:57 AM -0800 3/5/03, Lynn Young wrote: I am using servlet to print in the background, the code I use is: pdfWriter.addJavaScript("this.print(false);",false); That adds scripts to the PDF to run when it opens...So this is happening WAY after your servlet is completed... To put it simply, I

Re: [iText-questions] Prepress PDF generation

2003-03-05 Thread phillip
> Does anybody know if it is possible to use itext to generate prepress > professional hi-res PDF files? PDF is vector graphics. I do not think hi-res will apply to PDF. If you mean images in PDF, that will depend on your image. > > If so, have you had experience with that? If not, do yo

[iText-questions] Prepress PDF generation

2003-03-05 Thread Thompson Marinho Marzagao
Hello, Does anybody know if it is possible to use itext to generate prepress professional hi-res PDF files? If so, have you had experience with that? If not, do you know of any existing libraries that can do that? Thompson __ Do you Yahoo!? Yahoo!

[iText-questions] itext-paulo-110 (2003-03-05)

2003-03-05 Thread Tony Costanzo
In the new release it says there is support for form filling, form flattening, and FDF Merging.  Are thereany examples of taking a an existing PDF, taking data and populating fields, repeating this processfor the same PDF several times with different data (i.e. merging pdfs with the same fo

[iText-questions] How to detect if the printing is working

2003-03-05 Thread Lynn Young
Hello, I have a question regarding printing to ask. I am using servlet to print in the background, the code I use is:pdfWriter.addJavaScript("this.print(false);",false); and it works.  But in the meantime, I need to update database.  For example, if right now the checkno is 1, if it prints, then

[iText-questions] How to detect if printing is working

2003-03-05 Thread Lynn Young
Hello, I have a question regarding printing to ask. I am using servlet to print in the background, the code I use is:pdfWriter.add_JavaScript("this.print(false);",false); and it works.  But in the meantime, I need to update database.  For example, if right now the checkno is 1, if it prints, then

[iText-questions] Additional page when using tablehastofit

2003-03-05 Thread Isaac . Goldstein
Hi. When I set my table with the setTableHasToFit, iText somtimes adds a trailing blank page (when the last table finished close the edge of the last page). Why is this? Is there a way to supress this? Isaac --- This SF.net email is sponso

[iText-questions] New release itext-paulo-110

2003-03-05 Thread Paulo Soares
Changes in itext-paulo-110 (2003-03-05) - Added support for form filling, form flattening and FDF merging. - fixed FontFactory to recognize fonts where the family is not a substring of the full name. - added ColumnText.getLinesWritten(). All this at: http://www.geocities.co

RE: [iText-questions] iText download

2003-03-05 Thread Paulo Soares
ANT is irrelevant here. My latest release is at www.geocities.com/itextpdf, not at the CVS. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] > Sent: Wednesday, March 05, 2003 17:13 > To: [EMAIL PROTECTED] > Subject: [iText-questions]

RE: [iText-questions] Removing content after using writeSelectedRows()

2003-03-05 Thread Paulo Soares
Why dont you use onEndPage? Best Regards, Paulo Soares > -Original Message- > From: Campanale, Rocco [SMTP:[EMAIL PROTECTED] > Sent: Wednesday, March 05, 2003 17:08 > To: [EMAIL PROTECTED] > Subject: [iText-questions] Removing content after using > writeSelectedRows() > > Currentl

[iText-questions] Removing content after using writeSelectedRows()

2003-03-05 Thread Campanale, Rocco
Currently, I'm writing a pdf report using version .96. I am creating a header using a PdfPTable, which is written at an exact position using writeSelectedRows. The creation of the header is triggered by onStartPage from a registered PageEvent. I am writing a clob of data using a paragraph. This

[iText-questions] iText download

2003-03-05 Thread kg84
Hi, I cannot download latest released stuff using ANT. I am getting error "java.net.UnknownHostException: www.lowagie.com" as we are behind firewall. Is there any workaround solution for this? We want to generate data loaded W2 form as PDF document. I want to try that with new features of i

RE: [iText-questions] Java Tiff to PDF Help

2003-03-05 Thread Paulo Soares
I think that the example loops over all the pages. Be carefull with that sample because it won't work if the image has multiple strips. There's a sample at http://www.mail-archive.com/[EMAIL PROTECTED]/msg04182 that will work. Best Regards, Paulo Soares > -Original Message- > From: Basker

[iText-questions] Java Tiff to PDF Help

2003-03-05 Thread Basker Ganesan
Hello, I have multiple tiff images I need to merge them and covert it to a PDF document. (I want multiple Images in one PDF Document) Can anyone help me. I will Greatly appreciate your help. Basker Ganesan Following is a sample program which converts one single image to a PDF Document. I need

RE: [iText-questions] HeaderFooter problems

2003-03-05 Thread Paulo Soares
The HeaderFooter object is really very basic to do this. It may work if you remove the HeaderFooter just before closing the document. If you need something reliable use a page event. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] > Sent:

[iText-questions] HeaderFooter problems

2003-03-05 Thread Andrew . Luxner
Hello, Is there a simple way to add an Anchor object (a link) to a document footer? I can easily add the link in the document body, but everything I try in the HeaderFooter object fails. I can add an Anchor in to a HeaderFooter object and the code compiles, but when I run it I get the following er

RE: [iText-questions] change font-encoding in XML

2003-03-05 Thread Paulo Soares
The simplest way is to select the "Symbol" font and write the "D" and "d" for the delta. Other way is to register Arial with encoding "Identity-H" and use the Unicode delta code. It will work with all the characters contained in the font, it's fire-and-forget. The class Phrase switches to Symbol wh

[iText-questions] change font-encoding in XML

2003-03-05 Thread Henry Ristau
Hi, just want to ask if it is now possible to change the font-encoding with XML and how to do it. The reason is that I want a greek letter (Delta) inside the generated PDF-Document. I found a mailing-list-entry stating that it is not possible from may 2002. Hopefully things have been changing sin