Re: [iText-questions] Setting Page Margins

2007-02-05 Thread mister bean
It's very hard to tell what you're trying to do. The page size of 462 x *666* inches is unsupported in PDF. The current maximum is, unless it's been updated, 200 in x 200 in. Are you sure you don't mean points rather than inches? Presuming you mean points, I still don't understand what you're tr

Re: [iText-questions] Setting Page Margins

2007-02-05 Thread Matthias Becker
Hi   you have to multiply it with 72. 1 Inch == 72 Points, which is the unit being used.   Therefore, x=33264 and y=47952. > Hi all,    I have a requirement where in I need to have a page of dimension 462 * 666 inches. I'm not able to set the page size correctly. I tried using         

[iText-questions] Setting Page Margins

2007-02-05 Thread magesh rathnam
Hi all, I have a requirement where in I need to have a page of dimension 462 * 666 inches. I'm not able to set the page size correctly. I tried using Rectangle r = new Rectangle(462,0,0,666); Document document = new Document(r); But this does not create the document in the s

[iText-questions] Setting Page Margins

2007-02-05 Thread magesh rathnam
Hi all, I have a requirement where in I need to have a page of dimension 462 * 666 inches. I'm not able to set the page size correctly. I tried using Rectangle r = new Rectangle(462,0,0,666); Document document = new Document(r); -- Regards, Magi ---