[iText-questions] Reading PDF files

2002-03-04 Thread Massimo Lusetti
I need to read and 'understand' what is in PDF files. For instance: - I need to know if in the PDf file there're two images that are overlapped. - I need to know if there are external link to any kind ot resources (iamges) - I need to know if some kind of fonts is missing inside the file itself

[iText-questions] (no subject)

2002-03-04 Thread Massimo Lusetti
I need to read and 'understand' what is in PDF files. For instance: - I need to know if in the PDf file there're two images that are overlapped. - I need to know if there are external link to any kind ot resources (iamges) - I need to know if some kind of fonts is missing inside the file itself

RE: [iText-questions] Reading PDF files

2002-03-04 Thread Paulo Soares
You'll have to look elsewhere for this kind of features. Be warned that his kind of products are very expensive; prices of $10 are not uncommon. Best Regards, Paulo Soares -Original Message- From: Massimo Lusetti [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 10:34 To:

RE: [iText-questions] Reading PDF files

2002-03-04 Thread Massimo Lusetti
Quoting Paulo Soares [EMAIL PROTECTED]: You'll have to look elsewhere for this kind of features. Be warned that his kind of products are very expensive; prices of $10 are not uncommon. Well... that was just my idea :( ... do you have any hint where to look for ? -- Massimo

RE: [iText-questions] Reading PDF files

2002-03-04 Thread Paulo Soares
The one I knew of was SPDF from www.appligent.com but thay no longer license it. Adobe has a library but it's difficult to license. You can also have a look at www.glance.ch. Best Regards, Paulo Soares -Original Message- From: Massimo Lusetti [SMTP:[EMAIL PROTECTED]] Sent: Monday,

[iText-questions] JSP's, Servlets and PDF to StandardOut

2002-03-04 Thread Reiser, Michael, TRA
Hi! We think about using iText for our webapplication (JSP/PHP) which is currently using latex for generating the PDF's. One thing I'm not sure about is how to direct the iText-Output not to a file, but directly to StandardOut ( = the browser = AcrobatReader-PlugIn). Has anyone ever tried this?

RE: [iText-questions] JSP's, Servlets and PDF to StandardOut

2002-03-04 Thread Tobias Adamson
Title: RE: [iText-questions] JSP's, Servlets and PDF to StandardOut Hi Micheal from the faq res.setContentType(application/pdf); ByteArrayOutputStream ba = new ByteArrayOutputStream(); generate_pdf(ba); res.setContentLength(ba.size()); ServletOutputStream out = res.getOutputStream();

[iText-questions] Carriage return in rtf

2002-03-04 Thread Thierry Templier
Hello, I try to use rtf api of iText but I have problem to create a new line with '\n' ( it works with pdf ): Font sstitre=new Font(Font.TIMES_NEW_ROMAN, 10, Font.ITALIC | Font.BOLD); Paragraph pgh = new Paragraph(); pgh.setAlignment(Element.ALIGN_JUSTIFIED); pgh.add(new Phrase(\n\rUn

Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Mark
Thierry Templier wrote: Paragraph pgh = new Paragraph(); pgh.setAlignment(Element.ALIGN_JUSTIFIED); pgh.add(new Phrase(\n\rUn test\n\rUn test,sstitre)); document.add(pgh); Has anyone already had this problem? \n are not automatically translated into line breaks in the Rtf writer. You

[iText-questions] Re: JSP's, Servlets and PDF to StandardOut

2002-03-04 Thread bruno
Tobias Adamson writes: Hi Micheal from the faq res.setContentType(application/pdf); ByteArrayOutputStream ba = new ByteArrayOutputStream(); generate_pdf(ba); res.setContentLength(ba.size()); ServletOutputStream out = res.getOutputStream(); ba.writeTo(out); out.flush();

Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Th Templ
It works fine. Thanks for your help. I have another question about tables rtf. This is my code: Table datatable = new Table(4); datatable.setPadding(0); datatable.setSpacing(0); datatable.setBorderWidth(0); datatable.setBorderColor(new Color(0xff,0xff,0xff)); int headerwidths[] =

Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Matt Benson
This means that output written simultaneously from one Document to a PdfWriter and and RtfWriter will be inconsistent. Is there a reason why RtfWriter cannot behave as the others? --- Mark [EMAIL PROTECTED] wrote: Thierry Templier wrote: Paragraph pgh = new Paragraph();

[iText-questions] URGENT: Query regarding iText

2002-03-04 Thread SANDEEPR
Hello, Is there any way to use a fixed-width font while creating a PDF file that contains Japanese characters? Basically, we have a pre-formatted txt file containing Japanese characters, that needs to be converted to PDF. When we use the Heisei fonts, the formatting is spoilt. Alternatively,

[iText-questions] Re: will be in the next release

2002-03-04 Thread John Watson
This looks great! Thanks for the excellent quick response to my feature requests. Maybe I'll have to come up with some more! :) Thanks! John [EMAIL PROTECTED] writes: Hello, to improve XML functionality I have to improve the global functionality of iText. I am not ready yet for a

Cell Borders was: Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Steffen Stundzig
Hi th, On Mon, 04 Mar 2002 17:01:04 +0100 Th Templ [EMAIL PROTECTED] wrote: It works fine. Thanks for your help. I have another question about tables rtf. I specify to not draw border for the border but there are lines to separate cells: setBorderWith and setBorderColor aren't enough

Re: Cell Borders was: Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Steffen Stundzig
Hi templ, On Mon, 04 Mar 2002 17:54:22 +0100 Th Templ [EMAIL PROTECTED] wrote: Thanks to answer me. to hide borders please use setBorder( Rectangle.NO_BORDER ); I try it but it doesn't working! You are using the latest iText from CVS? Did you've disabled the table help lines in your

[iText-questions] Illegal operation 'm' inside a text object

2002-03-04 Thread Grant
This very descriptive error message started appearing when viewing my iText PDFs with Acrobat Reader 5, has anybody else run across this before? Grant ___ iText-questions mailing list [EMAIL PROTECTED]

Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Mark
On Monday 04 March 2002 17:16, you wrote: This means that output written simultaneously from one Document to a PdfWriter and and RtfWriter will be inconsistent. Is there a reason why RtfWriter cannot behave as the others? Not that I can think of. I'll change the RtfWriter to automatically

Re: Cell Borders was: Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Th Templ
Hi Steffen, You are using the latest iText from CVS? No I don't use the last version of iText from cvs: I will try it tomorrow... This is because the 'twips factor' in the RtfReader doesn't correspond with the PaperSize.A4 entries. Several Word versions need different page sizes, so it's not

Re: [iText-questions] Carriage return in rtf

2002-03-04 Thread Matt Benson
Cool. -Matt --- Mark [EMAIL PROTECTED] wrote: On Monday 04 March 2002 17:16, you wrote: This means that output written simultaneously from one Document to a PdfWriter and and RtfWriter will be inconsistent. Is there a reason why RtfWriter cannot behave as the others? Not that I

RE: [iText-questions] Illegal operation 'm' inside a text object

2002-03-04 Thread Paulo Soares
As you say, it's very descriptive. You used a moveTo inside a beginText/endText and that's illegal. Have a look at the pdf reference in text objects. Best Regards, Paulo Soares -Original Message- From: Grant [SMTP:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 17:06 To: [EMAIL

RE: [iText-questions] URGENT: Query regarding iText

2002-03-04 Thread Paulo Soares
You can use the Heisei fonts but you have to move the characters in the range \u0020-\u007f to \uff00-\uff5f. That's the Halfwidth and Fullwidth Forms unicode range. Other option is to use courier with the romanic characters but you'll have to change the default widths of 600 to 1000 to match the

[iText-questions] Nested Tables

2002-03-04 Thread Geraldo Xexeo
Title: Message I am having different problems with nested tables. QUESTION 1: Ithink that Example 13 of chapter five has a wrong result. Check Chap0513.pdf and you will see that cell 0,3 is divided in two, while the table was only inserted in cell 1,3. QUESTION 2: Also, example 13

[iText-questions] Adding List to ColumnText

2002-03-04 Thread Parrish, Matthew X
Hi, I'm using the ColumnText object to write out a pdf file with multiple columns throughout. I would like to use the List object's functionality to add a List object into the PDF, but I haven't been successful. Does anyone know how this can be done? If it is not currently possible, then