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 of    server mail.sourceforge.net[66.35.250.206]>"

Is it possible for you to attach your version of iText.jar to me?
Regards

-----Opprinnelig melding-----
Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] På vegne av Paulo Soares
Sendt: 13. september 2006 15:59
Til: Post all your questions about iText here
Emne: Re: [iText-questions] PfdPCell rotation: Missing text

Works for me. Test it first in netbeans just in case your webserver is using 
some other iText jar in the classpath or has it cached somewhere.

Paulo 

> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Tollefsrud, 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 the source files.
> 3. Open the source as a Netbeans(5.0) project.
> 4. Download and replace the PdfPRow.java file. The release 
> version is 1.73. The cvs-file is 1.75.
> 5. Run the "jar"-target from the build.xml-file.
> 6. Include the new jar-file from /build/bin in my web app.
> 7. Deploy the web app on my web server. (The pdf is executed 
> from a simple jsp)
> 8. Open the pdf-document from my web browser.
> 
> The 90 and 270 degree rotations still show no text.
> I'm using Acrobat Reader 7.0.8
> The connection to the cvs repository is not available.
> Please tell me if I'm doing something wrong.
> Regards
> 
> -----Opprinnelig melding-----
> Fra: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] På 
> vegne av Paulo Soares
> Sendt: 12. september 2006 17:21
> Til: Post all your questions about iText here
> Emne: Re: [iText-questions] PfdPCell rotation: Missing text
> 
> Works for me, I attach the result.
> 
> Paulo 
> 
> > -----Original Message-----
> > From: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] On 
> > Behalf Of Tollefsrud, Kjetil
> > Sent: Tuesday, September 12, 2006 1:56 PM
> > To: Post all your questions 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(PageSize.A4.rotate(), 40, 520, 40, 40);
> > document.open();
> > PdfPTable table = new PdfPTable(2);
> > PdfPCell celle = new PdfPCell(new Phrase("test1"));
> > PdfPCell celle2 = new PdfPCell(new Phrase("test2"));
> > celle.setRotation(180);
> > celle2.setRotation(90);
> > table.addCell(celle);
> > table.addCell(celle2);
> > document.add(table);
> > document.close();
> > 
> > This displays a pdf document with two bordered cells. They 
> > are empty. The text "test1" is displayed under the first 
> > cell, upside down. The text "test2" is not displayed 
> > anywhere. This indicates rotation 180 = 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-questions] PfdPCell rotation: Missing text
> > 
> > The fix is in PdfPRow.java.
> > 
> > Paulo 
> > 
> > > -----Original Message-----
> > > From: [EMAIL PROTECTED] 
> > > [mailto:[EMAIL PROTECTED] On 
> > > Behalf Of Tollefsrud, Kjetil
> > > Sent: Tuesday, September 12, 2006 12:36 PM
> > > To: Post all your questions about iText here
> > > Subject: Re: [iText-questions] PfdPCell rotation: Missing text
> > > 
> > > Thank you for the instant answer!
> > > 
> > > I've downloaded the source code and built my own "itext.jar". 
> > > I couldn't access cvs directly, so I got the source code of 
> > > release 1.4.4. I then opened the cvs-repository through the 
> > > web-client, and manually downloaded PdfPCell.java, which I 
> > > replaced in my local source. After building the jar again, 
> > > there's still no change. The problem still occurs.
> > > 
> > > My version of PdfPCell.java is: $Id: PdfPCell.java,v 1.59 
> > > 2006/02/16 16:17:49 psoares33 Exp $
> > > I did the same with PdfCell.java. My version is now:
> > > PdfCell.java,v 1.99 2006/09/08 12:58:39 blowagie Exp $
> > > 
> > > Do I need other files, newer than the 1.4.4 source?
> > > Best regards
> > > 
> > > -----Opprinnelig melding-----
> > > Fra: [EMAIL PROTECTED] 
> > > [mailto:[EMAIL 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 with rotation 180 and bottom or middle alignment.
> > > 
> > > Paulo 
> > > 
> > > > -----Original Message-----
> > > > From: [EMAIL PROTECTED] 
> > > > [mailto:[EMAIL PROTECTED] On 
> > > > Behalf Of Tollefsrud, Kjetil
> > > > 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 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);
> > > > 
> > > >  
> > > > 
> > > > This shows a pdf-document containing a table with two cells. 
> > > > So far, so good. 
> > > > 
> > > > But the rotated cell (cellOne) is empty, while the second one 
> > > > shows the given text.
> > > > 
> > > > If I rotate cellOne to 0 (cellOne.setRotation(0)), the text 
> > > > comes back.
> > > > 
> > > >  
> > > > 
> > > > I don't understand this, so any kind of help is welcome.
> > > > 
> > > > Thank you!
> > > > 
> > > >  
> > > > 
> > > > 
> > > 
> > > 
> > > Aviso Legal:
> > > 
> > > Esta mensagem é destinada exclusivamente ao destinatário. 
> > > Pode conter informação confidencial ou legalmente protegida. 
> > > A incorrecta transmissão desta mensagem não significa a perca 
> > > de confidencialidade. Se esta mensagem for recebida por 
> > > engano, por favor envie-a de volta para o remetente e 
> > > apague-a do seu sistema de imediato. É proibido a qualquer 
> > > pessoa que não o destinatário de usar, revelar ou distribuir 
> > > qualquer parte desta mensagem. 
> > > 
> > > 
> > > 
> > > Disclaimer:
> > > 
> > > This message is destined exclusively to the intended 
> > > receiver. It may contain confidential or legally protected 
> > > information. The incorrect transmission of this message does 
> > > not mean the loss of its confidentiality. If this message is 
> > > received by mistake, please send it back to the sender and 
> > > delete it from your system immediately. It is forbidden to 
> > > any person who is not the intended receiver to use, 
> > > distribute or copy any part of this message.
> > > 
> > > 
> > > 
> > > 
> > > **************************************************************
> > > **************
> > > Denne mail har blitt scannet av http://www.virus112.no
> > > This e-mail has been scanned for viruses by http://www.virus112.no
> > > **************************************************************
> > > **************
> > > 
> > > --------------------------------------------------------------
> > > -----------
> > > Using Tomcat but need to do more? Need to support web 
> > > services, security?
> > > Get stuff done quickly with pre-integrated technology to make 
> > > your job easier
> > > Download IBM WebSphere Application Server v.1.0.1 based on 
> > > Apache Geronimo
> > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&;
> > > dat=121642
> > > _______________________________________________
> > > iText-questions mailing list
> > > iText-questions@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/itext-questions
> > > 
> > 
> > 
> > Aviso Legal:
> > Esta mensagem é destinada exclusivamente ao destinatário. 
> > Pode conter informação confidencial ou legalmente protegida. 
> > A incorrecta transmissão desta mensagem não significa a perca 
> > de confidencialidade. Se esta mensagem for recebida por 
> > engano, por favor envie-a de volta para o remetente e 
> > apague-a do seu sistema de imediato. É proibido a qualquer 
> > pessoa que não o destinatário de usar, revelar ou distribuir 
> > qualquer parte desta mensagem. 
> > 
> > Disclaimer:
> > This message is destined exclusively to the intended 
> > receiver. It may contain confidential or legally protected 
> > information. The incorrect transmission of this message does 
> > not mean the loss of its confidentiality. If this message is 
> > received by mistake, please send it back to the sender and 
> > delete it from your system immediately. It is forbidden to 
> > any person who is not the intended receiver to use, 
> > distribute or copy any part of this message.
> > 
> > --------------------------------------------------------------
> > -----------
> > Using Tomcat but need to do more? Need to support web 
> > services, security?
> > Get stuff done quickly with pre-integrated technology to make 
> > your job easier
> > Download IBM WebSphere Application Server v.1.0.1 based on 
> > Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&;
> > dat=121642
> > _______________________________________________
> > iText-questions mailing list
> > iText-questions@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/itext-questions
> > 
> > **************************************************************
> > **************
> > Denne mail har blitt scannet av http://www.virus112.no
> > This e-mail has been scanned for viruses by http://www.virus112.no
> > **************************************************************
> > **************
> > 
> > --------------------------------------------------------------
> > -----------
> > Using Tomcat but need to do more? Need to support web 
> > services, security?
> > Get stuff done quickly with pre-integrated technology to make 
> > your job easier
> > Download IBM WebSphere Application Server v.1.0.1 based on 
> > Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&;
> > dat=121642
> > _______________________________________________
> > iText-questions mailing list
> > iText-questions@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/itext-questions
> > 
> 
> 
> Aviso Legal:
> Esta mensagem é destinada exclusivamente ao destinatário. 
> Pode conter informação confidencial ou legalmente protegida. 
> A incorrecta transmissão desta mensagem não significa a perca 
> de confidencialidade. Se esta mensagem for recebida por 
> engano, por favor envie-a de volta para o remetente e 
> apague-a do seu sistema de imediato. É proibido a qualquer 
> pessoa que não o destinatário de usar, revelar ou distribuir 
> qualquer parte desta mensagem. 
> 
> Disclaimer:
> This message is destined exclusively to the intended 
> receiver. It may contain confidential or legally protected 
> information. The incorrect transmission of this message does 
> not mean the loss of its confidentiality. If this message is 
> received by mistake, please send it back to the sender and 
> delete it from your system immediately. It is forbidden to 
> any person who is not the intended receiver to use, 
> distribute or copy any part of this message.
> 
> 
> **************************************************************
> **************
> Denne mail har blitt scannet av http://www.virus112.no
> This e-mail has been scanned for viruses by http://www.virus112.no
> **************************************************************
> **************
> 
> --------------------------------------------------------------
> -----------
> Using Tomcat but need to do more? Need to support web 
> services, security?
> Get stuff done quickly with pre-integrated technology to make 
> your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on 
> Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&;
> dat=121642
> _______________________________________________
> iText-questions mailing list
> iText-questions@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/itext-questions
> 


Aviso Legal:
Esta mensagem é destinada exclusivamente ao destinatário. Pode conter 
informação confidencial ou legalmente protegida. A incorrecta transmissão desta 
mensagem não significa a perca de confidencialidade. Se esta mensagem for 
recebida por engano, por favor envie-a de volta para o remetente e apague-a do 
seu sistema de imediato. É proibido a qualquer pessoa que não o destinatário de 
usar, revelar ou distribuir qualquer parte desta mensagem. 

Disclaimer:
This message is destined exclusively to the intended receiver. It may contain 
confidential or legally protected information. The incorrect transmission of 
this message does not mean the loss of its confidentiality. If this message is 
received by mistake, please send it back to the sender and delete it from your 
system immediately. It is forbidden to any person who is not the intended 
receiver to use, distribute or copy any part of this message.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

****************************************************************************
Denne mail har blitt scannet av http://www.virus112.no
This e-mail has been scanned for viruses by http://www.virus112.no
****************************************************************************

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to