[iText-questions] Text Form Field: Click plus sign in pdf file, some strange charaters will be shown.

2007-04-08 Thread Tim
I generate a pdf by iText. It contans pdf form, when the words in textbox is longer than the textbox's length, there will be a "+" sign in the end of the box. When I click it, the words in textbox will be changed to strange characters. Could you tell me if this is a bug of iText? If you have an

[iText-questions] WARNING. Mail Delayed: Re: Best Approach to Add a new Pages to an

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

[iText-questions] WARNING. Mail Delayed: Re: Problem with UTF-8 String and PDF

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

[iText-questions] WARNING. Mail Delayed: Problem with UTF-8 String and PDF

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

[iText-questions] Type3Font problem with version 2.0.1

2007-04-08 Thread Kevin Knowlden
I have discovered a problem with the latest version to do with the Type3Font class. The problem appears to do with the Iterator of the IntHashtable and the problem occurs within the writeFont() method, you can reproduce the problem by using the example in the Type3Font documentation.

[iText-questions] WARNING. Mail Delayed: Re: Using PdfSignatureAppearance.fitText(...)

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

[iText-questions] WARNING. Mail Delayed: Best Approach to Add a new Pages to an Existing

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

Re: [iText-questions] Problem with UTF-8 String and PDF

2007-04-08 Thread Paulo Soares
The conversion part is: new String(resultSet.getString(ch.getName()).getBytes("UTF-8")) I don't see any iText in it. If the DB is well configured resultSet.getString(ch.getName()) will get you the right text. If it doesn't it's not iText fault. Paulo - Original Message - From: "is_ma

Re: [iText-questions] Best Approach to Add a new Pages to an ExistingPDF

2007-04-08 Thread Paulo Soares
You can use PdfCopy to add the pages or use Pdfstamper and add the pages with PdfStamper.insertPage(). Paulo - Original Message - From: "David Powell" <[EMAIL PROTECTED]> To: Sent: Sunday, April 08, 2007 9:16 PM Subject: [iText-questions] Best Approach to Add a new Pages to an Existin

Re: [iText-questions] Using PdfSignatureAppearance.fitText(...) withconverted values

2007-04-08 Thread Paulo Soares
- Original Message - From: "David Powell" <[EMAIL PROTECTED]> To: Sent: Sunday, April 08, 2007 4:20 PM Subject: [iText-questions] Using PdfSignatureAppearance.fitText(...) withconverted values >I have a list of words and the coordinates (i.e. llx,lly, urx, ury) of > the position of ea

[iText-questions] Problem with UTF-8 String and PDF

2007-04-08 Thread is_maximum
Hi all I want to create pdf document and my strings encoding are in UTF-8 but after creating document, the letters are weird. Do iText suport utf-8 encoding? my snippet code is like this: Font myfont = FontFactory.getFont("Tahoma", 8, Font.BOLD,Color.BLACK); PdfPCell cell = new PdfPCell(new Pa

[iText-questions] Best Approach to Add a new Pages to an Existing PDF

2007-04-08 Thread David Powell
What is the best/recommended method to add a new page to a large PDF document? I want to add pages at the begin and at the end of the document. I am thinking about using the following steps, but I am not sure this is the best approach: 1. Create a new Document 2. Add new pages using Document.newPa

[iText-questions] WARNING. Mail Delayed: Re: generating PDF with images from XML

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

[iText-questions] WARNING. Mail Delayed: Using PdfSignatureAppearance.fitText(...) with

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

Re: [iText-questions] generating PDF with images from XML

2007-04-08 Thread Marek Spichalski
Hi, I use the tag and it works :) Marek 2007/4/8, nospam spamno <[EMAIL PROTECTED]>: Hi I am refering to Romeo and Juliet: XML to PDF: iText tutorial avaliable at: < http://itextdocs.lowagie.com/tutorial/directcontent/pageevents/index.html#romeojuliet > I am looking for a way to build a PD

[iText-questions] Using PdfSignatureAppearance.fitText(...) with converted values

2007-04-08 Thread David Powell
I have a list of words and the coordinates (i.e. llx,lly, urx, ury) of the position of each word in the PDF. The coordinate values are specified at a resolution of 1200 PPI. I converted the coordinate values to PDF default resolution of 72 PPI using the formula: convertedValue72ppi = (72/1200) * c

[iText-questions] WARNING. Mail Delayed: generating PDF with images from XML

2007-04-08 Thread TNVWZDOGKUVB
This is a warning message only. Your message remains in the server queue, the server will try to send it again. You should not try to resend your message now. Message delivery to '[EMAIL PROTECTED]' delayed SMTP module(domain steria.no) reports: steria67.steria.no: connection refused Repo

[iText-questions] generating PDF with images from XML

2007-04-08 Thread nospam spamno
Hi I am refering to Romeo and Juliet: XML to PDF: iText tutorial avaliable at: I am looking for a way to build a PDF document that will contain an image but the data would come from XML file in a simillar wa