[iText-questions] Text in PdfPCell is cut

2003-12-04 Thread Cezar FLOROIU
Hello I'm having a table with 4 columns and in the first column I have sometimes a long text. If the text is longer than cell's width it is automatically showed on multiple lines. Now I'm having a dynamical table with dynamical number of columns. If in the first cell I have a longer text it is cu

Re: [iText-questions] PdfTemplate in a PdfPCell

2003-11-08 Thread Cezar FLOROIU
Thx, Cezar - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Cezar FLOROIU" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, November 09, 2003 2:57 AM Subject: Re: [iText-questions] PdfTemplate in a PdfPCell > Make it an image.

[iText-questions] PdfTemplate in a PdfPCell

2003-11-08 Thread Cezar FLOROIU
Hi Is it possible to put a PdfTemplate in a PdfPCell ?? If so, how ? Thx Cezar --- This SF.Net email sponsored by: ApacheCon 2003, 16-19 November in Las Vegas. Learn firsthand the latest developments in Apache, PHP, Perl, XML, Java, MySQL, Web

[iText-questions] Alignament in PdfPTable

2003-11-03 Thread Cezar FLOROIU
Hi I'm having a table with 2 columns. In one column I put a bullet in the second a text. I want the bullet to be aligned at the same height as the first row of the text. My problem is that even I set for both cells cell.setVerticalAlignment(Element.ALIGN_TOP) it still doesn't work. Attached you ca

[iText-questions] alter last page's footer

2003-11-03 Thread Cezar FLOROIU
Hi ! I'm generating a PDF with multiple pages. Every page has a footer. I want to add some text in the last page's footer. Is it possible ? If so, how ? Thx, Cezar --- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceFo

Re: [iText-questions] problem with justifying

2003-10-29 Thread Cezar FLOROIU
Thanks Paulo, it works wonderful ! - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "'Cezar FLOROIU'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, October 29, 2003 6:19 PM Subject: RE: [iText-questions] problem

[iText-questions] problem with justifying

2003-10-29 Thread Cezar FLOROIU
Hi I have a problem with justifying - for example next text : Tomorrow will be a great football game. in word it is justified like this : Tomorrow will be a great football game. and using iText like this : Tomorrow will be a g r e a tf o o t b a l lg

Re: [iText-questions] RE: CulumnText bug ?? Please HELP

2003-10-21 Thread Cezar FLOROIU
Yes it works - Thanks VERY much !!! - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "'Cezar FLOROIU'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 21, 2003 5:23 PM Subject: RE: [iText-questions] RE: Cu

Re: [iText-questions] RE: CulumnText bug ?? Please HELP

2003-10-21 Thread Cezar FLOROIU
ement.ALIGN_JUSTIFIED); status_gen = ct.go(); if ((status_gen & ColumnText.NO_MORE_COLUMN) != 0) { document.newPage(); page ++; } currentY = posy - 20; } Do you have any idea ? If I can do this I will finish my project with iText.. Than

Re: [iText-questions] RE: CulumnText bug ?? Please HELP

2003-10-21 Thread Cezar FLOROIU
-- From: "Paulo Soares" <[EMAIL PROTECTED]> To: "'Cezar FLOROIU'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, October 21, 2003 12:22 PM Subject: [iText-questions] RE: CulumnText bug ?? Please HELP > Set an automatic leading. (

[iText-questions] CulumnText bug ?? Please HELP

2003-10-21 Thread Cezar FLOROIU
Hi I'm trying to put several different images into ColumnText. The images are separated by corresponding texts. Imagine something like : Image1 Text1 Image2 Text2 I figured out how to put correctly the image into a Chunk by phr.add(new Chunk(img, 0, -imgHeight)); where phr is a Phrase and

[iText-questions] ColumnText bug ?

2003-10-19 Thread Cezar FLOROIU
Hi   I'm trying to put several different images into ColumnText. The images are separated by corresponding texts. Imagine something like :   Image1 Text1 Image2 Text2   I figured out how to put correctly the image into a Chunk by phr.add(new Chunk(img, 0, -imgHeight)); where phr is a Phrase

[iText-questions] ColumnText bug ?

2003-10-19 Thread Cezar FLOROIU
Hi I'm trying to put several different images into ColumnText. The images are separated by corresponding texts. Imagine something like : Image1 Text1 Image2 Text2 I figured out how to put correctly the image into a Chunk by phr.add(new Chunk(img, 0, -imgHeight)); where phr is a Phrase and img is

Re: [iText-questions] ColumnText with images

2003-10-17 Thread Cezar FLOROIU
text |---| | | | | |---| text text text text text text Any ideas ?? thanks - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "'Cezar FLOROIU'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, October 17, 2003 12:15 PM

[iText-questions] ColumnText with images

2003-10-16 Thread Cezar FLOROIU
Hi,   I'm having a column text and I want to dynamically add images to it. I read the name of the images from database, then I want to insert the images from disk. My problem is that I don't know the sizes of the images and I want to position correct (I assume that the width of the images i

[iText-questions] PdfPTable - vertical text alignment in cells

2003-09-23 Thread Cezar FLOROIU
Hi All,   I created a PdfPTable with 2 columns. I want in first cell to have a bullet and in the second cell to have a text. Every row the same thing. Here's my code:     PdfPTable table = new PdfPTable(2);   cell = new PdfPCell(p);  p = new Phrase();  p.add(new Chunk("\u202

[iText-questions] special math signs

2003-08-30 Thread Cezar FLOROIU
Hi   I'm trying to insert in a PDF special math signs like ≤, ≥ , ±. The only one that I managed to insert was ± (\u00b1).   Why I can't insert ≤ (\u2264), ≥ (\u2265) ?   Any thoughts ?   Thanks

[iText-questions] image in columntext

2003-08-03 Thread Cezar FLOROIU
Hi   Is it possible to add images to ColumnText ? If so, how ?   Thx

RE: [iText-questions] Create and mandage PDF files in ASP

2003-07-22 Thread Cezar FLOROIU
Normally you can't. You'll need a Java - ASP bridge. If you were using ASP.NET you could try JNBridge. Best, Cezar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of EDS Ruvalcaba Jorge Arturo Sent: Tuesday, July 22, 2003 2:34 AM To: [EMAIL PROTECTED] Subject:

[iText-questions] onEndPage - text

2003-07-08 Thread Cezar FLOROIU
Hi   In the onEndPage method I want to make a footer. I'm using the showText() method of PdfContentByte to show the text. Everything works, but if I'm declaring my string with "\n" for new line it is ignored. This is my code:       String text = "Some text\nSome othertext";    float

[iText-questions] Image in document footer

2003-07-05 Thread Cezar FLOROIU
Hi   Can anyone show me a sample code of how to put an image in the footer of a document ?   Thanks very much, Cezar

RE: [iText-questions] NoSuchMethodError

2003-07-05 Thread Cezar FLOROIU
Right, I figured that. Thx -Original Message- From: Paulo Soares [mailto:[EMAIL PROTECTED] Sent: Saturday, July 05, 2003 3:35 PM To: Cezar FLOROIU; [EMAIL PROTECTED] Subject: Re: [iText-questions] NoSuchMethodError Coldfusion is using an old iText version (very old, colspan was added

[iText-questions] NoSuchMethodError

2003-07-04 Thread Cezar FLOROIU
Hi All,   I just met a strange issue: I made a class that generates a PDF. It works fine if I execute it in command prompt. When I call this class from a coldfusion page, I get a java.lang.NoSuchMethodError at cell.setColspan method, where cell is a PdfPCell. If I comment this line it work

RE: [iText-questions] Two questions. Please help

2003-07-04 Thread Cezar FLOROIU
nt: Friday, July 04, 2003 2:15 PM To: 'Cezar FLOROIU'; [EMAIL PROTECTED] Subject: RE: [iText-questions] Two questions. Please help You must have Element.ALIGN_TOP, Element.ALIGN_MIDDLE or Element.ALIGN_BOTTOM and don't answer "something like this", programming is an e

RE: [iText-questions] Two questions. Please help

2003-07-04 Thread Cezar FLOROIU
ly 04, 2003 2:06 PM To: 'Cezar FLOROIU'; [EMAIL PROTECTED] Subject: RE: [iText-questions] Two questions. Please help I have one question: 1 - Did you read the tutorial? Best Regards, Paulo Soares > -Original Message----- > From: Cezar FLOROIU [SMTP:[EMAIL PROTECTED] > Sen

[iText-questions] onPageEnd & table

2003-07-04 Thread Cezar FLOROIU
Hi   I'm having a 2 columns table. When I'm filling first column, if the page break is reached I want to start filling the second column. When the page end is reached I go to the next page and perform the same action.   Has anyone tried something like this ? If so, can I get some help..  

[iText-questions] Table - vertical column filling

2003-07-03 Thread Cezar FLOROIU
Hi   For PDF generation: I have a table with 2 columns. Is it possible to fill this table in the following way: first I fill first column with cells (vertical). When I reach the end of the page I start to fill the second column with cells. The same for next page and so on until no more recor

[iText-questions] Two questions. Please help

2003-07-03 Thread Cezar FLOROIU
Hi   Please help me, I have two question:   1. How can I align vertically a text in a PdfPCell ?   2. Is it possible to encrypt the PDF document ?   Thanks, Cezar