[iText-questions] method="post" instead of get to a servlet

2005-01-17 Thread Happynation
Hello   I tryed do give a parameter with the methode post instead of get to a servlet. For trying i used the Example from your Website: http://itext.sourceforge.net/examples/com/lowagie/examples/general/webapp/HelloWorldServlet.java   I changede the doGet into doPost and as well in the

Re: [iText-questions] last page?

2005-01-17 Thread Bruno
Quoting Kieran Metcalfe <[EMAIL PROTECTED]>: > What I'm thinking is that I should form a queue of all items to add Take a look at the com.lowagie.text.pdf.ColumnText object and see if it meets your needs. There are some examples here: http://www.lowagie.com/iText/tutorial/ch10.html#columntext br

Re: [iText-questions] Table cell spacing

2005-01-17 Thread Wendy Smoak
From: "Bruno" <[EMAIL PROTECTED]> The layout of each cell can be done in the cell event. This is not working. I'm calling methods on the cell that is passed into my PdfPCellEvent, I know the method is being called, but the borders are still there. I put the code and the PDF here: http://www.wen

Re: [iText-questions] Using same Image multiple times in doc

2005-01-17 Thread Bruno
Quoting Eric Schneider <[EMAIL PROTECTED]>: > I did what you suggested (open the file in text editor), but I'm not > sure how to deduce if the document is sharing the image or using a new > one for each iteration. > > Here are all the areas that reference anything about an "Image": > > 3 0 obj >

RE: [iText-questions] iText-PDF: Custom font usage

2005-01-17 Thread Paulo Soares
http://www.lowagie.com/iText/tutorial/ch09.html#truetype > -Original Message- > From: Mahalle, Rajesh (GE Trans, Non-US, It Bangalore) > Sent: Monday, January 17, 2005 1:14 PM > > All, > > Is it possible to use the custome defined font which is > installed in the > machine while creati

Re: [iText-questions] Using same Image multiple times in doc

2005-01-17 Thread Eric Schneider
Bruno, Thanks for the quick reply. I instantiate the Image in a static block... public static Image TINY_TREE; static { try { TINY_TREE = Image.getInstance(new URL(getSignatureImageUrl("sephora300.jpg"))); } catch (BadEleme

[iText-questions] Re: Re: signing 10 MB sized pdf document

2005-01-17 Thread Wahaj
I am trying to use OptimizeIt from Borland to see where the issue is but I am not sure where in iText the issue is. Are you talking in terms of optimization in signing or generally. Regards, Wahaj "David Teran" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > did you try a java - pro

[iText-questions] last page?

2005-01-17 Thread Kieran Metcalfe
Hi I've developed a small set of classes which produce various types of document output from our system. One of the settings I'm working on is the ability to select which pages should display Letterheads. If a page has a letterhead, then the margin must be increased before the page is written

RE: [iText-questions] Re: Re: signing 10 MB sized pdf document

2005-01-17 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Wahaj > Sent: Monday, January 17, 2005 1:53 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Re: Re: signing 10 MB sized pdf document > > In most of the cases it keeps

Re: [iText-questions] iText-PDF: Custom font usage

2005-01-17 Thread Bruno
Quoting "Mahalle, Rajesh (GE Trans, Non-US, It Bangalore)" <[EMAIL PROTECTED]>: > All, > > Is it possible to use the custome defined font which is installed in the > machine while creating the PDF using iText. > > ex.document.add(new Paragraph("Hello World",new Font(Font.Custome Font Name > , 18

[iText-questions] iText-PDF: Custom font usage

2005-01-17 Thread Mahalle, Rajesh (GE Trans, Non-US, It Bangalore)
All, Is it possible to use the custome defined font which is installed in the machine while creating the PDF using iText. ex.document.add(new Paragraph("Hello World",new Font(Font.Custome Font Name , 18, Font.BOLDITALIC, new Color(0, 0, 255))); example : Custome Font Name="PDF Font" Could anybod

RE: [iText-questions] PdfContentByte and OutOfMemory Exception

2005-01-17 Thread Paulo Soares
iText doesn't know about jtable rows, it just renders what it gets. It's up to you to break the jtable and just render 32 rows at a time. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, January 17, 2005 7:49 AM > To: Paulo Soares; itext-questions

[iText-questions] Re: Re: signing 10 MB sized pdf document

2005-01-17 Thread Wahaj
In most of the cases it keeps on taking more memory until Out Of Memory error is shown. I have also tested encryption of pdf document and the memory utilization is lower than while signing but it still grows. Is there a way to resolve this issue ? Regards, Wahaj "Paulo Soares" <[EMAIL PROTECTED]>

RE: [iText-questions] PDFReader with PageEvents

2005-01-17 Thread Paulo Soares
That's a pdf as any other but with imported pages. That the pages are imported to a template that can be placed in your new doc. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Andrea Schwob > Sent: Monday, January 17, 2005 8:53 AM > To: itext-q

RE: [iText-questions] Using same Image multiple times in doc

2005-01-17 Thread Paulo Soares
That's a printer/printer driver issue. There's nothing iText can do. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Eric Schneider > Sent: Sunday, January 16, 2005 8:33 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions]

[iText-questions] PDFReader with PageEvents

2005-01-17 Thread Andrea Schwob
Hi all I found the example (Chap13_pdfreader) how I can read from an existing PDF with PDFReader and insert pages to it and create a new PDF with the hole stuff. I wonder if there is any possibilty to use also the PageEvents for the new created document. So I could add page numbers, header and foot

Re: [iText-questions] Creating a PDF from XML source data

2005-01-17 Thread Bruno
Quoting Christian Lauer <[EMAIL PROTECTED]>: > Hi Wendy, > > why don't you give UJAC a try (ujac.sourceforge.net)? > The print module may be exactly what you need. I have a notebook full of ideas for the tutorial and UJAC is in there somewhere, but as the XML tutorial doesn't have priority I for

Re: [iText-questions] Using same Image multiple times in doc

2005-01-17 Thread Bruno
Quoting Eric Schneider <[EMAIL PROTECTED]>: > I know this has been asked before, but I'm having trouble finding it > with the archive search. I have the same problem with GMANE, I hope it will be solved soon. In the maintime you can use some other list archives to search the list: ttp://www.lowag

Re: [iText-questions] Table cell spacing

2005-01-17 Thread Bruno
Quoting Wendy Smoak <[EMAIL PROTECTED]>: > What am I doing wrong? I'm not sure, but don't you change the default cell of your instance of PdfPTable with PdfPTable.getDefaultCell()? That way you don't need to create a new PdfPCell every time, you can just add cells with PdfPTable.addCell(String).