[iText-questions] PDFCopier to repeat the same page

2003-10-31 Thread wang yun
Dear Sir, I am using PDFCopier to copy an PDFReader page 1 twice. The first copy is OK, but the second copy is nothing. How can I deal with this case? Thanks for your help, yun here is my code page = copier.getImportedPage(reader, 1); copier.addPage(page); //OK page = copier.getImpo

[iText-questions] PDF Concatenation

2003-10-31 Thread razer
Well, I'm already solve this problem... If anyone needs, ask me, I have the code (iText 0.92 ;-) bye... --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it hel

[iText-questions] RE: Interleaving pages from two existing PDFs with iText?

2003-10-31 Thread Paulo Soares
It should work, or maybe it's just my wishful thinking. I'll have a look into it this weekend. Best Regards, Paulo Soares > -Original Message- > From: Andrzej Jan Taramina [SMTP:[EMAIL PROTECTED] > Sent: Friday, October 31, 2003 15:40 > To: Paulo Soares > Cc: [EMAIL PROTECTED] > Subje

RE: [iText-questions] Problems getting PdfContentByte, help needed

2003-10-31 Thread Miguel Juanes
Thanks for your reply. Problem fixed it. Maybe toString() of PdfContentByte returns "" and I thought the problem was that. Thanks again, Miguel. NUEVO TISCALI ADSL ON ¡Navega desde las 15.00h. a alta velocidad por sólo 29,50 €/mes! Conócelo en http://acceso.tiscali.es/pag-acceso-adsl-on.jsp?did=a

[iText-questions] itext and weblogic7.0 (jdk1.3) - font error!

2003-10-31 Thread seha neznanovic
Hi, I am using jasperreports-0.5.0 and itext-0.96 to generate pdf reports. The application server is Weblogic7.0 and JVM is jdk131_06. I thisnk I have an error in itext class BaseFont.java at: -> (BaseFont)fontCache.get(key) key is "Courier CP1252 false" fontCache is a HashMap The problem is

[iText-questions] RE: Interleaving pages from two existing PDFs with iText?

2003-10-31 Thread Andrzej Jan Taramina
> The problem is that PdfCopy can't duplicate pages. You must read the > separator.pdf as many times as you are including it. Actually read it only > once and duplicate it with the constructor PdfReader(PdfReader). That doesn't seem to work. I'm already reading the separator.pdf file every time

[iText-questions] RE: Interleaving pages from two existing PDFs with iText?

2003-10-31 Thread Paulo Soares
The problem is that PdfCopy can't duplicate pages. You must read the separator.pdf as many times as you are including it. Actually read it only once and duplicate it with the constructor PdfReader(PdfReader). Best Regards, Paulo Soares > -Original Message- > From: Andrzej Jan Taramina [SM

RE: [iText-questions] Pdf Concatenation

2003-10-31 Thread Paulo Soares
If you want to use an obsolete version, you're in your own. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] > Sent: Friday, October 31, 2003 12:17 > To: [EMAIL PROTECTED] > Subject: [iText-questions] Pdf Concatenation > > > >

RE: [iText-questions] itext question

2003-10-31 Thread Paulo Soares
You have to change the page size before opening the document for it to work for the first page. Best Regards, Paulo Soares > -Original Message- > From: Rémi Guilbert [SMTP:[EMAIL PROTECTED] > Sent: Thursday, October 30, 2003 19:11 > To: [EMAIL PROTECTED] > Subject: [iText-questions

RE: [iText-questions] footer problems

2003-10-31 Thread Paulo Soares
Use a page event instead of a HeaderFooter. Best Regards, Paulo Soares > -Original Message- > From: Hugo Kotsubo [SMTP:[EMAIL PROTECTED] > Sent: Thursday, October 30, 2003 20:48 > To: [EMAIL PROTECTED] > Subject: [iText-questions] footer problems > > Hi! > > I have a pdf document

RE: [iText-questions] itext barr bar-code

2003-10-31 Thread Paulo Soares
Set the font to null. Best Regards, Paulo Soares > -Original Message- > From: José Vieira [SMTP:[EMAIL PROTECTED] > Sent: Thursday, October 30, 2003 23:26 > To: [EMAIL PROTECTED] > Subject: [iText-questions] itext barr bar-code > > Hi ALL > I'm printing that barr, but it show the

RE: [iText-questions] Is there a reason why PDFReader doesn't acc ept InputStreams?

2003-10-31 Thread Andrzej Jan Taramina
> The pdf format requires random access to the file. Reading it to a byte > array is really the only way, unless, of course, you create localy a > temporary file on disk. Thanks Paulo.I've implemented reading to a byte array, and that seems to be working OK. Andrzej Jan Taramina Chaeron Cor

RE: [iText-questions] Possible to have different page size in one document?

2003-10-31 Thread Paulo Soares
See http://www.lowagie.com/iText/tutorial/ch01.html. Best Regards, Paulo Soares > -Original Message- > From: kathy [SMTP:[EMAIL PROTECTED] > Sent: Friday, October 31, 2003 23:52 > To: iText-FAQ > Subject: [iText-questions] Possible to have different page size in > one document? >

[iText-questions] Possible to have different page size in one document?

2003-10-31 Thread kathy
Hi, Can I have a different page setting for each page in one pdf file? e.g. 1st page is landscape then 2nd page is potrait. Cheers, Kathy --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more

RE: [iText-questions] Stamping with fixe coordonates

2003-10-31 Thread Paulo Soares
The settings are the same but the coordinates are always relative to the media box. If the page has a crop box the text will appear to move to the lower left side. Best Regards, Paulo Soares > -Original Message- > From: Nadeau, Isabelle [SMTP:[EMAIL PROTECTED] > Sent: Thursday, October 30

RE: [iText-questions] Is there a reason why PDFReader doesn't acc ept InputStreams?

2003-10-31 Thread Paulo Soares
The pdf format requires random access to the file. Reading it to a byte array is really the only way, unless, of course, you create localy a temporary file on disk. Best Regards, Paulo Soares > -Original Message- > From: Andrzej Jan Taramina [SMTP:[EMAIL PROTECTED] > Sent: Friday, October

Re: [iText-questions] a couple of problems related to RTF

2003-10-31 Thread Mark Hall
On Friday 31 October 2003 00:19, Ole Kasper Olsen wrote: > 1) Tables are broken when opening the RTF file in Word 2000. > There is no problem when opening the very same RTF file in > Word XP. I use iText's normal table functionality as shown > in the tutorials and documentation. The table also seem

[iText-questions] Pdf Concatenation

2003-10-31 Thread razer
Hello All... I am using iText 0.92, and need to concat two byte[], which represent two pdf files. I need to concat these two pdfs, but the code at internet is only for a new version of iText. Could you please help me... If anyone have a code in iText 0.92 to concat pdfs, please, se

[iText-questions] Stamping with fixe coordonates

2003-10-31 Thread Nadeau, Isabelle
Title: Stamping with fixe coordonates Hi, After I generate a PDF document from a concatenation of static PDFs and dynamic PDFs (created with FOP), I am stamping text on each page of this document (page numbers, always requesting the same X,Y coordinates. Unfortunatly, the position where

[iText-questions] itext barr bar-code

2003-10-31 Thread José Vieira
Hi ALL I'm printing that barr, but it show the number under it , i'd like it desn't appear. How can I do that ? Thanks BarcodeInter25 code25 = new BarcodeInter25(); code25.setCode("341916900281159330265208424700051666078341"); code25.setStartStopText(false);

[iText-questions] itext question

2003-10-31 Thread Rémi Guilbert
Hi, I try to open a pdf file (LETTER SIZE) and change the page size to LEGAL, but it doesn't work. Is it possible ? Do you have a exemple or a other link like http://www.lowagie.com/iText/tutorial/ch01.html#pagesize ? I try different combinations of code before send you this email. Thank's a lo