Hi,
 
  Can any one tell me how to configure itext.jar file
into jdeveloper or jbuilder.iam newbie to java.Pls
help me

Thanks

--- [EMAIL PROTECTED]
wrote:
> Send iText-questions mailing list submissions to
>       [EMAIL PROTECTED]
> 
> To subscribe or unsubscribe via the World Wide Web,
> visit
> 
>
https://lists.sourceforge.net/lists/listinfo/itext-questions
> or, via email, send a message with subject or body
> 'help' to
>       [EMAIL PROTECTED]
> 
> You can reach the person managing the list at
>       [EMAIL PROTECTED]
> 
> When replying, please edit your Subject line so it
> is more specific
> than "Re: Contents of iText-questions digest..."
> 
> 
> Today's Topics:
> 
>    1. Re: Need to produce a PDF with different size
> pages (Bruno)
>    2. Re: writer.fitsPage(table) returning false
> even if there's space enough (Paulo Soares)
>    3. AW: [iText-questions] writer.fitsPage(table)
> returning false even if there's space enough (Marc
> Lustig)
>    4. HTML to PDF conversion : &nbsp Exception.
> (sathish kumar)
>    5. AW: [iText-questions] writer.fitsPage(table)
> returning false even if there's space enough (Marc
> Lustig)
>    6. Re: writer.fitsPage(table) returning false
> even if there's space enough (Paulo Soares)
> 
> --__--__--
> 
> Message: 1
> Date: Sat, 23 Aug 2003 08:32:34 +0200
> From: Bruno <[EMAIL PROTECTED]>
> To: Brian <[EMAIL PROTECTED]>
> Cc: [EMAIL PROTECTED]
> Subject: Re: [iText-questions] Need to produce a PDF
> with different size pages
> 
> Quoting Brian <[EMAIL PROTECTED]>:
> 
> > Hi,
> > 
> > I have been using iText for about a week now.  All
> I can say is WOW, 
> > WOW, and WOW this is a GREAT tool.  I have hit one
> stumbling block.  One 
> > of the variable PDF's I need to produce has three
> pages, and they are 
> > all different sizes.  I have figured out how to do
> everything on it 
> > except sizing the pages differently.  Can some one
> point me in the right 
> > direction here?
> 
> You need to set the pagesize with setPageSize before
> every newPage().
> There's an example in Chapter 1 of the tutorial.
> 
> br,
> Bruno
> 
> 
> --__--__--
> 
> Message: 2
> From: "Paulo Soares" <[EMAIL PROTECTED]>
> To: "Marc Lustig" <[EMAIL PROTECTED]>,
>       "iText list"
> <[EMAIL PROTECTED]>
> Subject: Re: [iText-questions]
> writer.fitsPage(table) returning false even if
> there's space enough
> Date: Sat, 23 Aug 2003 13:06:07 +0100
> 
> I would like to see a runable example with that
> behavior.
> 
> Best Regards,
> Paulo Soares
> 
> ----- Original Message -----
> From: "Marc Lustig" <[EMAIL PROTECTED]>
> To: "iText list"
> <[EMAIL PROTECTED]>
> Sent: Friday, August 22, 2003 17:38
> Subject: [iText-questions] writer.fitsPage(table)
> returning false even if
> there's space enough
> 
> 
> > Hi again,
> >
> > I tried to solve the problem another way and use
> writer.fitsPage(table);
> > to check whether there is enough space or not.
> > Strangely this doesn't work either:
> writer.fitsPage(table) returns false
> > even when the table covers only 2/3 of the
> available space of the page.
> > It always allows 32 rows, independently where the
> table starts, and then
> > returns false.
> > How comes that? It it a bug?
> >
> > Regards
> > Marc
> >
> >
> >
> >
> >
>
-------------------------------------------------------
> > This SF.net email is sponsored by: VM Ware
> > With VMware you can run multiple operating systems
> on a single machine.
> > WITHOUT REBOOTING! Mix Linux / Windows / Novell
> virtual machines
> > at the same time. Free trial click
> > here:http://www.vmware.com/wl/offer/358/0
> > _______________________________________________
> > iText-questions mailing list
> > [EMAIL PROTECTED]
> >
>
https://lists.sourceforge.net/lists/listinfo/itext-questions
> >
> 
> 
> 
> --__--__--
> 
> Message: 3
> From: "Marc Lustig" <[EMAIL PROTECTED]>
> To: "'Paulo Soares'" <[EMAIL PROTECTED]>,
>       "'iText list'"
> <[EMAIL PROTECTED]>
> Subject: AW: [iText-questions]
> writer.fitsPage(table) returning false even if
> there's space enough
> Date: Sat, 23 Aug 2003 14:37:01 +0200
> 
> Runnable? that would need to pass the whole project,
> which is rather
> complex, but here is the relevant
> method.document.TOTAL_WIDTH is
> verified and correct.
> The decontructed logic basically is quite simple:
> =09
> do {
>       PdfPTable t =3D new PdfPTable(new float[] {13, 12,
> 11, 12, 10, 15,
> 27});
>       t.setTotalWidth(document.TOTAL_WIDTH);
>       // adding cells....
> } while (document.writer.fitsPage(t)); // returns
> false after 2/3 of the
> page
> 
> The other condition in the while loop is not the
> problem. I checked
> that.
> 
> Thanks in advance...
> 
> 
>   private PdfPCell getColumn() {
>     Font headFont =3D BaseAbrechnung.fontEVNHead;
>     Font f =3D BaseAbrechnung.fontEVN;
>     PdfPTable t =3D new PdfPTable(new float[] {13,
> 12, 11, 12, 10, 15,
> 27});
>     t.setTotalWidth(document.TOTAL_WIDTH);
>     t.addCell(getHeadCell(new Phrase("Datum",
> headFont)));
>     t.addCell(getHeadCell(new Phrase("Uhrzeit",
> headFont)));
>     t.addCell(getHeadCell(new Phrase("Dauer",
> headFont)));
>     t.addCell(getHeadCell(new Phrase("ServiceNr",
> headFont)));
>     t.addCell(getHeadCell(new
> Phrase("Kunden\nKennung", headFont)));
>     t.addCell(getHeadCell(new Phrase("Gegenstelle",
> headFont)));
>     PdfPTable tOp =3D new PdfPTable(2);
>     tOp.addCell(getHeadCell(new
> Phrase("Operator\nDauer", headFont)));
>     tOp.addCell(getHeadCell(new
> Phrase("Operator\nKennung", headFont)));
>     PdfPCell opCell =3D new PdfPCell(tOp);
>     opCell.setBorder(0);
>     t.addCell(opCell);
>     boolean fits;
>     do { // gehe solange durch bis spalte voll oder
> evn 
=== message truncated ===


__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com


-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to