Re: [iText-questions] FONTS...

2002-11-08 Thread Cooremans, Rony
xtends from a Rectangle, but I can't find the method > to set this values, except for the constructor of the Rectangle itself... > > Is it possible to do what I say? > > - Original Message - > From: "Cooremans, Rony" <[EMAIL PROTECTED]> > To: "Matí

Re: [iText-questions] FONTS...

2002-11-08 Thread Cooremans, Rony
setColsPan does just what it says sets the spanning of a collum which means how manny collumns will a cell ocupy in a table (1 to number of colums of your table) (can be read in the javadoc if i am not mistaken , is also the same in html) Height and width of a page are in points (also explained s

[iText-questions] Large Pagesize

2002-10-17 Thread Cooremans, Rony
Sorry for this not being a general iText question. I created a pdf file with iText with a special pagesize of 4950.6 by 182.8 mm how can i print this so that i have serveral A4 pages that can be glued next to eachother ? -- Rony Cooremans TRASYS N.V. MVG, LIN, AOSO, afdeling Geotechniek Aria

Re: [iText-questions] translate dimension (float to cm)

2002-09-18 Thread Cooremans, Rony
1 inch = 2.54 cm so the calculation becomes 1 cm = 1 * (72/2.54) points Paulo Soares wrote: > The dimensions are points. > > 1 point == 1/72 inch > > Best Regards, > Paulo Soares > > --- Igor Mazzone <[EMAIL PROTECTED]> wrote: > > hi, > > I would like know how translate in cm or inc the > > fl

[iText-questions] Re: PdfPCell colspan

2002-06-23 Thread Cooremans, Rony
Why dont you do the folowing ? PdfPCell cell = new PdfPCell(new Phrase(my phrase, font)); cell.setColspan(colspan); ptable.addCell(cell); Message: 1 From: "Miller, Eric" <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Date: Fri, 21 Jun 2002 13:46:25 -0600 Subject: [iT

Re: [iText-questions] Headers

2002-05-21 Thread Cooremans, Rony
(problem starts on page 2) Bruno Lowagie wrote: > Quoting "Cooremans, Rony" <[EMAIL PROTECTED]>: > > > Hello > > > > I make a header for my pdf doc with the folowing code > ... > > The problem with this is that the image displays fine on the first pa

[iText-questions] Headers

2002-05-21 Thread Cooremans, Rony
Hello I make a header for my pdf doc with the folowing code -- code snippet Table hoofd = new Table(4,1); hoofd.setBorder(Rectangle.NO_BORDER); Image logoImg = Image.getInstance(m_logofile); Cel

Re: [iText-questions] Re : name of pdf gets name of servlet

2002-05-17 Thread Cooremans, Rony
filename always becomes servletname.html For pdf's it becomes the last part of the url I ll try the web.xml solution as soon as i solve some other bugs Bruno Lowagie wrote: > Quoting "Cooremans, Rony" <[EMAIL PROTECTED]>: > > > >Define the name i

[iText-questions] Re : name of pdf gets name of servlet

2002-05-16 Thread Cooremans, Rony
>Define the name in the HTTP Header by >changing the "Content-Disposition". >This will probably work in most browsers, >but not in all. Doesent work in communicator 4.79 nor in explorer 6.0 >Fool the browser by adding PathInfo to your URL. >If you designed your application following an MVC >arc

[iText-questions] RE: generating graphs

2002-04-05 Thread Cooremans, Rony
Why use external programs to create graphs? You have all the functionality to make graphs included in itext already. In a heavy simplified way , you can say that a grap exists out of dots and lines (perhaps circles to) The example attached shows a grap only created with itext functrionality. The

[iText-questions] Pagenumber in Pagefooter

2002-02-08 Thread Cooremans, Rony
> Is there a possibility to influence the fontsize of the pagenumber ? If i do : Phrase voornr = new Phrase(new Chunk(voornrTxt,new Font(Font.TIMES_NEW_ROMAN,8))); Phrase nanr= new Phrase(new Chunk(nanrTxt,new Font(Font.TIMES_NEW_ROMAN,6))); m_footer = new HeaderFooter(voornr,nanr); T

[iText-questions] question about rectangles

2002-01-25 Thread Cooremans, Rony
sorry that i pose so much questions but is it possible to fill a rectangle with a pattern and not with a color (i need to produce a lot of different charts that ll go into my pdf document) ___ iText-questions mailing list [EMAIL PROTECTED] https://l

[iText-questions] PdfPtable over more then 1 page

2002-01-25 Thread Cooremans, Rony
I m doing some tests with Itext , everythings seems ok until now (also thanks to a little help of bruno :pp ) I only have 1 problem for now if i draw a table of lets say 5 rows on an absolute position of (0,30) then only the rows that fit on 1 page appear , the other rows are gone