Re: [iText-questions] Rectangle in PdfContentByte Positioning Problem

2011-07-21 Thread 1T3XT BVBA
On 21/07/2011 17:00, Mike Rothschild wrote: > I believe you did not understand what I meant originally though. No, that's why I'm asking for a standalone example that reproduces the problem. I can't debug a screen shot. -

Re: [iText-questions] Rectangle in PdfContentByte Positioning Problem

2011-07-21 Thread 1T3XT BVBA
On 20/07/2011 0:21, Mike Rothschild wrote: > Hi, > > I currently am building a PDF through Java using iText 5.1.1 which has > a table and for each table there are two columns. The first column of > each row is a rectangular color and the second column of each row is > text. All of this is bein

[iText-questions] Rectangle in PdfContentByte Positioning Problem

2011-07-19 Thread Mike Rothschild
Hi, I currently am building a PDF through Java using iText 5.1.1 which has a table and for each table there are two columns. The first column of each row is a rectangular color and the second column of each row is text. All of this is being generated within a loop. Now, the table builds fine wi

Re: [iText-questions] rectangle filter does not work (java.awt.rectangle is used)

2011-05-30 Thread Iden Willson
Ha Ha I fixed It, I was using "*out.println(PdfTextExtractor.getTextFromPage(reader, i));" *which is not OK for my purpose, I should use "*out.println(PdfTextExtractor.getTextFromPage(reader, i, strategy));*" and now, every thing is OK. On Mon, May 30, 2011 at 8:39 PM, Iden Willson wrote: > Hi

[iText-questions] rectangle filter does not work (java.awt.rectangle is used)

2011-05-30 Thread Iden Willson
Hi people; I was trying chapter 15 example codes, I found that rectangle filter didn't work on this pdf with this source , and just shows this "output.txt" file. It just converts all

Re: [iText-questions] Rectangle

2011-01-18 Thread M. Niedermair
>> Is it possible to add a constructor with a string (see below)? > I prefer a factory in cases like this: > you feed a String to a factory and you receive a Rectangle object. a factory is also okay. By Michael -- Prote

Re: [iText-questions] Rectangle

2011-01-18 Thread 1T3XT BVBA
Op 18/01/2011 10:03, M. Niedermair schreef: > Hi Bruno and friends, > > the constructor of the class Rectangle allows only floats as parameter. > I often get the parameter as a bounding box string. > > Is it possible to add a constructor with a string (see below)? I prefer a factory in cases like t

[iText-questions] Rectangle

2011-01-18 Thread M. Niedermair
Hi Bruno and friends, the constructor of the class Rectangle allows only floats as parameter. I often get the parameter as a bounding box string. Is it possible to add a constructor with a string (see below)? By Michael packag

Re: [iText-questions] Rectangle borders

2006-05-17 Thread bruno
[EMAIL PROTECTED] wrote: Maybe i did not explain it properly: I create the rectangle and use the PdfContentByte.rectangle() to add it at the page. OK, if you know how to use method rectangle(), then it's only a small step to learn how to draw a custom rectangle with variable borders line by li

RE: [iText-questions] Rectangle borders

2006-05-17 Thread Paulo Soares
EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, May 17, 2006 12:02 PM > To: itext-questions@lists.sourceforge.net > Subject: RE: [iText-questions] Rectangle borders > > Maybe i did not explain it properly: > I create the rectangle and use the PdfContentByt

RE: [iText-questions] Rectangle borders

2006-05-17 Thread akoukou
17, 2006 10:57 AM > > To: itext-questions@lists.sourceforge.net > > Subject: RE: [iText-questions] Rectangle borders > > > > I'm sorry but i cannot find the methods that will draw the > > rectangle as i want > > > > Paulo Soares <[EMAIL PROTECTED]> said

RE: [iText-questions] Rectangle borders

2006-05-17 Thread Paulo Soares
PdfContentByte.rectangle() > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Wednesday, May 17, 2006 10:57 AM > To: itext-questions@lists.sourceforge.net > Subject: RE: [iText-questions] Rectangle b

RE: [iText-questions] Rectangle borders

2006-05-17 Thread akoukou
] > > [mailto:[EMAIL PROTECTED] On > > Behalf Of [EMAIL PROTECTED] > > Sent: Wednesday, May 17, 2006 10:08 AM > > To: itext-questions@lists.sourceforge.net > > Subject: [iText-questions] Rectangle borders > > > > Hello, > > > > I am using the

RE: [iText-questions] Rectangle borders

2006-05-17 Thread Paulo Soares
> Subject: [iText-questions] Rectangle borders > > Hello, > > I am using the Rectangle class to display a rectangle. > I set the border width (setBorderWidth(float)) and i call the > disableBorderSide method to disable some of the borders of > the rectangle. > > But, i

[iText-questions] Rectangle borders

2006-05-17 Thread akoukou
Hello, I am using the Rectangle class to display a rectangle. I set the border width (setBorderWidth(float)) and i call the disableBorderSide method to disable some of the borders of the rectangle. But, i need more that a single line for the borders. My requirements are for creating rectangles wi

Re: [iText-questions] rectangle, table to a position

2005-07-19 Thread Philip Newton
On 7/19/05, Nadrai Tamás <[EMAIL PROTECTED]> wrote: > 1. > I'd like to ask if I can draw a rounded rectangle, like > those two in this example. You can certainly do it Direct Content -- see part 4 of the tutorial ( http://itextdocs.lowagie.com/tutorial/#part4 ). That would require you to draw them

[iText-questions] rectangle, table to a position

2005-07-19 Thread Nadrai Tamás
hi! I have to generate pdf files from a web application. The files have to look like this : http://gatya.atw.hu/temp.doc , but filled with datas. 1. I'd like to ask if I can draw a rounded rectangle, like those two in this example. 2. Can i create a table to an absolute position to make such

[iText-questions] rectangle

2004-07-23 Thread Alawi albaity
-I want to mak rectangle like a footer in an existing pdf file -I want it to remove the already existing contents in his place . -I want to write text in this rectangle from two lines after I make it . -I want rectangle white background. - I use pdf stamper .  

Re: [iText-questions] Rectangle Color Fill

2003-08-26 Thread Paulo Soares
cb.setRGBColorFill(255,0,0); cb.rectangle(0,0,300-2,200-2); cb.fill(); Best Regards, Paulo Soares - Original Message - From: "yun wang" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 25, 2003 18:43 Subject: [iText-questions] Rectangle Color Fill

[iText-questions] Rectangle Color Fill

2003-08-25 Thread yun wang
Dear Paulo, I want to fill a rectagle. It works with smaller cb.rectangle(0,0,200,150); It doesn't work for cb.rectangle(0,0,300-2,200-2) or cb.rectangle(-10,-10,300+20,200+20) How can I achieve color fill for bigger rectangle (-10,-10,300+20,200+20)? Thanks, yun Here is my code: Document d

[iText-questions] rectangle and line positions

2003-07-23 Thread David Thielen
Please reply to me too as e-mail to iText is not getting to me (spam filter problem).   I am drawing a rectangle     rectangle (x1, y1, wid, ht )   And then a line     moveTo( x1, y1 )     lineTo( x1 + wid, y1 )   And the line, which is 1/2 pt wide, is drawn with some of the rectangle belo

RE: [iText-questions] rectangle with round corner

2003-03-12 Thread Paulo Soares
PdfContentByte.roundRectangle() > -Original Message- > From: Thomas Kübler [SMTP:[EMAIL PROTECTED] > Sent: Wednesday, March 12, 2003 8:44 > To: [EMAIL PROTECTED] > Subject: [iText-questions] rectangle with round corner > > hallo, > > how can i set a r

[iText-questions] rectangle with round corner

2003-03-12 Thread Thomas Kübler
hallo,   how can i set a rectangle with round corners?     thanks to all     thomas kübler

Re: [iText-questions] Rectangle pagesize definition

2002-07-30 Thread Bruno
Quoting "Mariakakis, Manolis" <[EMAIL PROTECTED]>: > How can I define the rectangle pagesize before the usage of document.open > command, knowing the number of columns and rows and that the characters has > fixed width. Or, you define the pageSize and margins in the appropriate Document construc

[iText-questions] Rectangle pagesize definition

2002-07-30 Thread Mariakakis, Manolis
How can I define the rectangle pagesize before the usage of document.open command, knowing the number of columns and rows and that the characters has fixed width. Thanks, Manolis --- This sf.net email is sponsored by: Dice - The leading online