Re: [iText-questions] Bug with PdfWriter setBoxSize() ?

2004-11-03 Thread Paulo Soares
writer.setBoxSize("trim", trimRect); document.open(); - Original Message - From: "Sven Henckel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 03, 2004 20:29 Subject: [iText-questions] Bug with PdfWriter setBoxSize() ? > I think there is a bug concerning the sett

Re: [iText-questions] RTF table of contents - German Text

2004-11-03 Thread Mark Hall
On Wednesday 03 November 2004 19:31, [EMAIL PROTECTED] wrote: > rtfWriter.writeTOC("Table Of Contents",new Font(),false,new > Font()); > rtfWriter.setGenerateTOCEntries(true); > > The generated table of contents is in german text. If i open the > document and do an upd

[iText-questions] Bug with PdfWriter setBoxSize() ?

2004-11-03 Thread Sven Henckel
I think there is a bug concerning the setting of boxes with the PdfWriter. Doing the following (setting the trim box) leads to no corresponding box in the PDF document. The same is true for the other boxes... I'm using "itext-paulo-139". Maybe I'm doing something wrong? Document document = new Doc

RE: [iText-questions] PDF X3

2004-11-03 Thread Paulo Soares
You have one example for X1a, replace with X3 and add the objects. It will catch most of the invalid ones. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Florian Clever > Sent: Wednesday, November 03, 2004 2:54 PM >

RE: [iText-questions] compressed images and PDFGraphics2D

2004-11-03 Thread Paulo Soares
More details are needed. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Anka > Sent: Wednesday, November 03, 2004 2:14 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] compressed images and PDFGraphics2D > > Hi! > is there any way to add t

[iText-questions] RTF table of contents - German Text

2004-11-03 Thread srinivasu . l . vempuluru
Hi, I am using the following code to generate the table of contents for the rtf rtfWriter.writeTOC("Table Of Contents",new Font(),false,new Font()); rtfWriter.setGenerateTOCEntries(true); The generated table of contents is in german text. If i open the do

RE: [iText-questions] (no subject)

2004-11-03 Thread Paulo Soares
It was a bug, now fixed. I'll have a new release this week. Best Regards, Paulo Soares > -Original Message- > From: Patrick Lee [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 03, 2004 12:44 PM > To: Paulo Soares; [EMAIL PROTECTED] > Subject: RE: [iText-questions] (no subject) >

Re: [iText-questions] PDF X3

2004-11-03 Thread Leonard Rosenthol
At 09:54 AM 11/3/2004, Florian Clever wrote: I am trying to natively create an PDF X3 using iText. OK. But can't I simply create it directly using iText? Of course. Does somebody have an example? Paulo said he was going to post one with the next release? Create one the way

[iText-questions] PDF X3

2004-11-03 Thread Florian Clever
I am trying to natively create an PDF X3 using iText. I saw postings with somebody importing an existing X3 doc and then adding content. But can't I simply create it directly using iText? Does somebody have an example? Paulo said he was going to post one with the next release? I guess if not, I w

[iText-questions] compressed images and PDFGraphics2D

2004-11-03 Thread Anka
Hi! is there any way to add to PDF document compressed images from Graphics2D object? thanks --- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best databas

[iText-questions] RE: $B2s?.!'(B RE: [iText-questions] About the Traditional Character converting int PDF

2004-11-03 Thread Paulo Soares
(B (B (BSee http://www.lowagie.com/iText/tutorial/ch09.html#CJK. (BThere are also other option with TT and OTF fonts. (B  (BBest Regards, (BPaulo Soares (B (B (B (B From: [EMAIL PROTECTED] (B [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 03, (B 2004 10:40 AMTo: Paulo S

RE: [iText-questions] About the Traditional Character converting int PDF

2004-11-03 Thread Paulo Soares
No problem with that. What exactly do you want to do? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Wednesday, November 03, 2004 12:36 AMTo: [EMAIL PROTECTED]Cc: [EMAIL PROTECTED]Subject: [iText-questions] About the Traditional

RE: [iText-questions] Question: about PRIndirect reference error!!

2004-11-03 Thread Paulo Soares
You need PdfReader.getPdfObject() to dereference the PRIndidirectReference. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Kalkunda, Venkat > Sent: Tuesday, November 02, 2004 4:38 PM > To: [EMAIL PROTECTED] > Subject

RE: [iText-questions] (no subject)

2004-11-03 Thread Paulo Soares
I also need the original PDF. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Patrick Lee > Sent: Tuesday, November 02, 2004 5:14 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] (no subject) > > Hi, > > I'm having a problem with parti

RE: [iText-questions] itext page feed

2004-11-03 Thread Paulo Soares
Document.newPage() > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, November 03, 2004 7:56 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] itext page feed > > I need to produce a multi-page document u

[iText-questions] Question: about PRIndirect reference error!!

2004-11-03 Thread Kalkunda, Venkat
Hi, I am trying to cast a PdfObject Class variable to a PdfArray class. I am getting a ClassCastException. Can somebody tell me what I am doing wrong? Thank You Venkat Kalkunda -Message Disclaimer- This e-mail message is intended only for the use of the individual or entity to which

[iText-questions] Table over Pages

2004-11-03 Thread roger . widmer
I my table sould some sections (2 or more cells) stay together on the same page. I try this with a main table and some subtable (=stay together): mainTable.setCellsFitPage(true); subTable.setTableFitsPage(true); mainTable.insertTable(subTable); But it does not work. What sould i change/try? Best

[iText-questions] About the Traditional Character converting int PDF

2004-11-03 Thread daniel4048
Dear Sir:            How about translating Traditional Character into PDF via iText now?            Please advise me a message.  Thanks! Best Regards, Daniel  

[iText-questions] itext page feed

2004-11-03 Thread ghobson
I need to produce a multi-page document using PdfContentByte to control exact layout on each page. Can anyone tell me now to produce a page feed (end a page and start a next page)? I see nothing in tutorial explaining how to control page changes. -