Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-14 Thread bruno
Tollefsrud, Kjetil wrote: >Sounds good enough for me. Thx for your patience! > Thanks for YOUR patience. iText 1.4.5 is now online. Note that it takes a while before the release is forwarded to all the SourceForge mirrors. best regards, Bruno --

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-14 Thread Tollefsrud, Kjetil
Sounds good enough for me. Thx for your patience! BR -Opprinnelig melding- Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På vegne av bruno Sendt: 14. september 2006 11:38 Til: Post all your questions about iText here Emne: Re: [iText-questions] PfdPCell rotation: Missing text

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-14 Thread bruno
Tollefsrud, Kjetil wrote: >Same thing happens when I run the application as non web app. I tried to >attach the iText.jar file for you to try, but message returned "< >outbound-relay4.comendo.com #5.0.0 X-Postfix; message size 1897763 exceeds >size limit 1048576 ofserver mail.sourceforge.ne

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-14 Thread Tollefsrud, Kjetil
ud, Kjetil > Sent: Wednesday, September 13, 2006 2:44 PM > To: Post all your questions about iText here > Subject: Re: [iText-questions] PfdPCell rotation: Missing text > > Hello. Sorry to bother you again! I follow these steps: > > 1. Download the 1.4.4 source. > 2. Unzip

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-13 Thread Paulo Soares
Sent: Wednesday, September 13, 2006 2:44 PM > To: Post all your questions about iText here > Subject: Re: [iText-questions] PfdPCell rotation: Missing text > > Hello. Sorry to bother you again! I follow these steps: > > 1. Download the 1.4.4 source. > 2. Unzip the source files. &g

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-13 Thread Tollefsrud, Kjetil
estions about iText here > Subject: Re: [iText-questions] PfdPCell rotation: Missing text > > Hello again. This still doesn't work. The rotation at 180 and > 360 works fine. 90 and 270 doesn't. These are the basic parts > of my code: > > document = new Document(P

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-12 Thread Paulo Soares
80 = OK, rotation 90/270 != OK. > Regards. > > -Opprinnelig melding- > Fra: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] På > vegne av Paulo Soares > Sendt: 12. september 2006 13:39 > Til: Post all your questions about iText here > Emne: Re: [iText-question

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-12 Thread Tollefsrud, Kjetil
Sendt: 12. september 2006 13:39 Til: Post all your questions about iText here Emne: Re: [iText-questions] PfdPCell rotation: Missing text The fix is in PdfPRow.java. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Tollefsrud,

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-12 Thread Paulo Soares
PROTECTED] På > vegne av Paulo Soares > Sendt: 11. september 2006 15:37 > Til: Post all your questions about iText here > Emne: Re: [iText-questions] PfdPCell rotation: Missing text > > It's a bug and it's already fixed in the CVS. It was also fixed a > problem wit

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-12 Thread Tollefsrud, Kjetil
etil > Sent: Monday, September 11, 2006 1:55 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] PfdPCell rotation: Missing text > > Hello, I'm trying to rotate a PdfPCell containing a short > text, like this: > > > > PdfPTable

Re: [iText-questions] PfdPCell rotation: Missing text

2006-09-11 Thread Paulo Soares
eptember 11, 2006 1:55 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] PfdPCell rotation: Missing text > > Hello, I'm trying to rotate a PdfPCell containing a short > text, like this: > > > > PdfPTable table = new PdfPTable(2)

[iText-questions] PfdPCell rotation: Missing text

2006-09-11 Thread Tollefsrud, Kjetil
Hello, I’m trying to rotate a PdfPCell containing a short text, like this:   PdfPTable table = new PdfPTable(2); PdfPCell cellOne = new PdfPCell(new Phrase("Text 1")); cellOne.setRotation(90); table.addCell(cellOne); table.addCell("Text 2"); //Second cell document.add(table);   Thi