Re: [iText-questions] Problem writing PDF using JSP

2002-11-12 Thread Bruno
Quoting Matthew Ryan <[EMAIL PROTECTED]>: > Dear Sirs and Madams, > > I am writing a JSP that will take a TIF file on disk and convert it to a PDF, > writing it to disk, Using JSP is always a bad idea in this case. JSP must not be used to produce binaries. See the FAQ http://www.lowagie.com/iTex

[iText-questions] Meta tags

2002-11-12 Thread amar
hello i have pdf file i want to add meta information to it , is it possible with iText.   Thx  

[iText-questions] Meta tags

2002-11-12 Thread amar's comcast.net email account
hello i have pdf file i want to add meta information to it , is it possible with iText.   Thx

[iText-questions] How to add a com.lowagie.text.Image into a Cell

2002-11-12 Thread SATHISH Sreedharan
Hi, How should i add a com.lowagie.text.Image into a Cell.I know it is possible to put the com.lowagie.text.Image in a Chunk and add the Chunk to the cell.But the Chunk will always take an image with absolute position but i need to add a com.lowagie.text.Image into a cell.How shd i do it.Awaiting t

[iText-questions] Japanese PDF conversion problems

2002-11-12 Thread Ashutosh Salgarkar
Hi, I am using following code to convert the Japanese txt to Japanese PDF. But some characters are not displayed properly in the output PDF file ("?" are displayed for such characters), others are displaying properly. Could anybody help me in this regard? Ashutosh import java.io.*; import java.io

[iText-questions] Image for r0.92 .

2002-11-12 Thread amit
Hi Can you please tell me how can I add an image for iText (r0.92) version ? thanx Amit --- This sf.net email is sponsored by: To learn the basics of securing your web site with SSL, click here to get a FREE TRIAL of a Thawte Server Cer

[iText-questions] Problem writing PDF using JSP

2002-11-12 Thread Matthew Ryan
Dear Sirs and Madams, I am writing a JSP that will take a TIF file on disk and convert it to a PDF, writing it to disk, and I have the following error from Tomcat: java.lang.NoSuchMethodError at com.lowagie.text.pdf.PdfDate.(Unknown Source) at com.lowagie.text.pdf.PdfDate.(Unknow

RE: [iText-questions] Can Itext Support SVG or how can I improve the image quality?

2002-11-12 Thread Craig Earls
iText doesn't directly support SVG. However the PdfGraphics2D object supports all(well, most, I haven't tried them all) Java2D functions so you can get fully quality vector based graphics. If you are just sticking bitmaps in then your quality will be no better than the original graphic, and it wil

[iText-questions] Can Itext Support SVG or how can I improve the image quality?

2002-11-12 Thread Xiaohong Yin
Hi, All: I use IText to export my report to PDF. Things are great so far except the image quality. Does IText support SVG format or is there a way I can improve the image quality? Thanks in advance. Xiaohong --- This sf.net email is sponsor

Re: [iText-questions] Use of iText in commercial purpose

2002-11-12 Thread Leonard Rosenthol
At 10:28 AM 11/12/2002 +0100, Bruno wrote: The people at iText don't give commercial (= paid) support, but I think that in specific cases (evaluated on a case per case basis), you can get commercial support for iText at http://www.pdfsages.com/ (Leonard Rosenthol will probably correct me if I'm wr

[iText-questions] Document.setFooter() bug?

2002-11-12 Thread QJian
Hi all I am an newer to iText. I use document.setHeader(header) and document.setFooter(footer) in my application. Inside header and footer, I use a Table object to contain all of the contents that I want them appear in the Header or Footer. The Header works very well, however, Footer don't work

RE: [iText-questions] Using iText in a Java stored procedure

2002-11-12 Thread Gyula Szalai
Thanks to both of you. We'll investigate the problem a bit deeper. regards, Gyula > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Shahzad > Latif > Sent: Tuesday, November 12, 2002 7:03 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: RE: [i

RE: [iText-questions] Using iText in a Java stored procedure

2002-11-12 Thread Shahzad Latif
I ran into similar issues few months ago. Here is something I figured out: 1) You cannot materialize anything in Oracle's JVM. eg., load image using java.awt.image or show a frame/message etc. In NT, it will always give you "GUI not allowed" message. Not sure what HP Unix/Solaris message text is

RE: [iText-questions] Using iText in a Java stored procedure

2002-11-12 Thread Paulo Soares
awt can be used in an embedded jvm but Oracle may have decided not to include it. I doubt that you can run anything with graphic aspirations, even java.awt.Color will have the same problem. Or maybe Oracle has an answer to it. On the other hand the error has to do with native methods not found and

RE: [iText-questions] Cell hight

2002-11-12 Thread Paulo Soares
Only with PdfPTable. Best Regards. Paulo Soares > -Original Message- > From: amit [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, November 12, 2002 18:27 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: [iText-questions] Cell hight > > Hi >Can you please tell me how can

[iText-questions] RE: [comp.text.pdf] Column data and/or Footer truncated when printing

2002-11-12 Thread VISWANATH, MEENA (JSC-DO354) (USA)
Hello, I use iText to create PDF report files. The report looks fine when I display the data in Acrobat Reader and also prints fine when I print it in Acrobat Reader. But when I invoke the Acrobat Reader to print the file without displaying the data on the screen (i.e. to run in the backgrou

[iText-questions] Nested Tables

2002-11-12 Thread Khaled Alakhras
What is the best approach for nesting tables that span multiple cells? The Table class seems to have a limitation on adding a Table to a cell that has a colspan of more than 1. Thanks,KhaledDo you Yahoo!? U2 on LAUNCH - Exclusive medley & videos from Greatest Hits CD

[iText-questions] Using iText in a Java stored procedure

2002-11-12 Thread Gyula Szalai
Hi all, We created a report processor in Java that uses iText. This report processor creates HTML tables that can be parsed by M$ Excel. This report processor should run in an Oracle Database server's embedded JVM (Aurora). So, we created a stored procedure for this purpose. After calling the stor

[iText-questions] Cell hight

2002-11-12 Thread amit
Hi Can you please tell me how can i control height of a cell ? Thanks Amit --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ iText-questions mai

RE: [iText-questions] Syntax problem...

2002-11-12 Thread Paulo Soares
The xref table or startxref are pointing to the wrong addresses. Remember that pdf files are binary although they might look as text. You should post generic pdf questions unrelated with iText to comp.text.pdf. Best Regards, Paulo Soares > -Original Message- > From: Mandip S. Sangha [SMTP

RE: [iText-questions] How can I force a section header to the same page as an Image?

2002-11-12 Thread Craig Earls
Tricky!!! I totally missed that in my search. Thanks for the pointer. It worked like a champ. Craig P. Earls Senior Software Architect Xpogen, Inc. > -Original Message- > From: Bruno [mailto:bruno@;lowagie.com] > Sent: Tuesday, November 12, 2002 3:19 AM > To: Craig Earls > Cc: [EMAIL P

[iText-questions] Syntax problem...

2002-11-12 Thread Mandip S. Sangha
Hi All I have the following pdf file: %PDF-1.0 1 0 obj << /Type /Catalog /Pages 2 0 R >> endobj 2 0 obj << /Type /Pages /Count 1 /Kids [3 0 R] >> endobj 3 0 obj << /Type /Page /Parent 2 0 R /Resources << /Font << /F1 5 0 R >> /ProcSet 6 0 R >> /MediaBox [0 0 612 792] /Contents 4 0 R >> endobj 4 0

Re: [iText-questions] Use of iText in commercial purpose

2002-11-12 Thread Bruno
Quoting Amal K Banerjee <[EMAIL PROTECTED]>: > At Toshiba IT solution- we are evaluating iText for one of our project for > a very reputed client. > Please let us know the licensing agreement and other procedure to use iText > in commercial purpose. The MPL license is sufficient. It allows you to

[iText-questions] Use of iText in commercial purpose

2002-11-12 Thread Amal K Banerjee
At Toshiba IT solution- we are evaluating iText for one of our project for a (Bvery reputed client. (BPlease let us know the licensing agreement and other procedure to use iText (Bin commercial purpose. (BPlease also let us know - whether we need any license from Unisys to use (BiText as it us

Re: [iText-questions] Adding an Image.

2002-11-12 Thread amit
Hi Thankx for quick response . Is there any other way to add an image for that version ? Amit -- Original message -- Date: Tue, 12 Nov 2002 09:12:01 +0100 From: Bruno <[EMAIL PROTECTED]> Reply-To: Bruno <[EMAIL PROTECTED]> To: amit <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED]

Re: [iText-questions] How can I force a section header to the same page as an Image?

2002-11-12 Thread Bruno
Quoting Craig Earls <[EMAIL PROTECTED]>: > Document.newpage() obvious doesn't work > since the new chapter hasn't even been added yet. There is a smart trick to achieve this: (posted by Shrikant Shetty) Chunk chunk = new Chunk (""); chunk.setNewPage(); Paragraph newPage= new Paragraph (chunk); se

Re: [iText-questions] setPageSize() problem

2002-11-12 Thread Bruno
Quoting amy cheng <[EMAIL PROTECTED]>: > > Now, i have 3 pages, the first and third are portraition, the second is > landscape. if i write something in first page, everything works fine. but if > i don't write anything in the first page(comment document.add(new > Paragraph("Hello World sun"));)

Re: [iText-questions] Adding an Image.

2002-11-12 Thread Bruno
Quoting amit <[EMAIL PROTECTED]>: > Hi > > Thanks for response . I checked my version is iText0.30. I tried adding > an image to cell but its not compiling with this version . Can you please > tell me how i should add image for the version I have . That is a very old version (february 2000

RE: Re: [iText-questions] Column data and/or Footer truncated when printing

2002-11-12 Thread VISWANATH, MEENA (JSC-DO354) (USA)
Hello, I use iText to create PDF report files. The report looks fine when I display the data in Acrobat Reader and also prints fine when print it in Acrobat Reader. But when I invoke the Acrobat Reader to print the file without displaying the data on the screen (i.e. to run in the background),