Re: [iText-questions] Problem signing pdf-file

2005-09-22 Thread Ulrik Stervbo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks a lot to all of you - I understand a whole lot more now Ulrik Leonard Rosenthol wrote: At 09:31 AM 9/21/2005, Ulrik Stervbo wrote: So the warning is a result of my signature, so to speak... Correct. . I have just one question then -

[iText-questions] using CellEvent to check wether Text fits in cell or not

2005-09-22 Thread Michael Seib
Hi, i would like to use the Cell Event to check wether a certain text fits in a cell or not. With version 1.02b I used the method setFixedHeight for PdfPCell to set the height the cell should use. In the CellEvent I then checked if the current height of the cell [cell.height()} is larger than

Re: [iText-questions] RTF howto space paragraphs?

2005-09-22 Thread Mark Hall
On Wednesday 21 September 2005 21:36, Brown, Charles wrote: I picked up the itext-1.3.3.jar, and it still doesn't work. Attached is a sample source file, and the output I get from it. It does work, but the values you are using are much to small. For example a spacing of 0.5 is 0.5pt in

Re: [iText-questions] Problems with Rtf ...

2005-09-22 Thread Mark Hall
On Thursday 22 September 2005 06:10, Raja_Banerjee wrote: But plz tell me what was wrong in handling the footers? What is the correct way to do so... plz guide. There were bugs in the iText rtf generation code that caused footers to not be displayed in some cases. The only fix is to upgrade to

[iText-questions] Printer's Spread with iText

2005-09-22 Thread Larry Schmidlin
Is there an easy way to create a pdf in the Printer's Spread format using iText? i.e., I'm making a 20 page book and the pages are 2 sided, but half the size of a regular letter size. Thus, 4 pages are put on a piece of paper, 2 pages on each side of the piece of paper. The paper is then cut or

RE: [iText-questions] Problems with Rtf ...

2005-09-22 Thread Raja_Banerjee
Hi Mark, Thank you very much. But plz tell me what was wrong in handling the footers? What is the correct way to do so... plz guide. Regards, ~Raja -Original Message- From: Mark Hall [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 8:57 PM To:

AW: [iText-questions] RE: generating pdf through the Velocity

2005-09-22 Thread Dirk Doerflinger
Hello, I'm doingt this at the moment, I'm using Velocity (built into the Intrexx portal server) and a few self made java classes using iText. Actually, it's quite simply: In Intrexx, there is a framework which allows me to introduce external java classes (.jars so to say) into the velocity

[iText-questions] Have you ever considered a pdf markup language

2005-09-22 Thread Barry Brown
Do you think that a markup language for pdf would be useful. Hello world: document id=1 paragraphHello World/paragraph /document writer document=1 file=output.pdf/ IText could then provide the interpretor. __ Yahoo! Mail - PC Magazine

Re: [iText-questions] Printer's Spread with iText

2005-09-22 Thread bruno
Larry Schmidlin wrote: Is there an easy way to create a pdf in the Printer's Spread format using iText? i.e., I'm making a 20 page book and the pages are 2 sided, but half the size of a regular letter size. Thus, 4 pages are put on a piece of paper, 2 pages on each side of the piece of paper.

Re: [iText-questions] Have you ever considered a pdf markup language

2005-09-22 Thread bruno
Barry Brown wrote: Do you think that a markup language for pdf would be useful. Hello world: document id=1 paragraphHello World/paragraph /document writer document=1 file=output.pdf/ IText could then provide the interpretor. I started 'inventing' a markup language (see

[iText-questions] Problems with fitsPage and printing

2005-09-22 Thread josem_berges
Hi! I'm using PdfWriter.fitsPage() method. Although fitsPage() method returns false, when I add the Table to the document it is added at the end of the current page. I need to know the total number of pages of the document before the Table is added (if the Table is going to be inserted at

RE: [iText-questions] using CellEvent to check wether Text fits in cell or not

2005-09-22 Thread Paulo Soares
If it worked like that in 1.02b it was a bug. A PdfPCellEvent must provide the real cell dimensions, in this case the fixed height. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Seib Sent: Thursday, September 22, 2005 7:24 AM To:

Re: [iText-questions] iText version for java 1.3.1

2005-09-22 Thread bruno
[EMAIL PROTECTED] wrote: Hi, I would like to know which is the latest iText release proved on java 1.3.1. As nobody answers this question, I will reply: I have no idea what you mean with proved. I don't make releases compiled with 1.3, but Paulo has ask me to apply some changes to

Re: [iText-questions] Merging content from two pages into one

2005-09-22 Thread Pedro Romano
Thanks Bruno! Adding the second page as a template to the first one worked like a charm. :) --Pedro. On 9/21/05, Bruno Lowagie [EMAIL PROTECTED] wrote: Pedro Romano wrote: I've been most successful filling in the fields a form and adding bitmaps to a PDF generated using Scribus You

[iText-questions] pdf size restrictions

2005-09-22 Thread Alan Klikic
Hi. I have a problem signing pdf file witch file size is 9 MB or greater (OutOfMemory Exception). Has iText any pdf file size restrictions? Thanx, Alan --- SF.Net email is sponsored by: Tame your development challenges with Apache's

Re: [iText-questions] pdf size restrictions

2005-09-22 Thread bruno
Alan Klikic wrote: Hi. I have a problem signing pdf file witch file size is 9 MB or greater (OutOfMemory Exception). Has iText any pdf file size restrictions? No, but your JVM has. What constructor of PdfReader are you using? The one that takes a RandomAccessFileOrArray object is

[iText-questions] Re: iText version for java 1.3.1

2005-09-22 Thread Simona
bruno bruno at lowagie.com writes: vlxlb at tin.it wrote: Hi, I would like to know which is the latest iText release proved on java 1.3.1. As nobody answers this question, I will reply: I have no idea what you mean with proved. I don't make releases compiled with 1.3, but Paulo

Re: [iText-questions] Re: iText version for java 1.3.1

2005-09-22 Thread bruno
Simona wrote: I have to complete my PDF document in a short time, so I think I cannot wait for release 1.3.4. Release 1.3.4 has just been put online @ SourceForge. I only have to update the lowagie.com site. Since for iText 1.3 jar you wrote ...The iText jar is compiled with the JDK1.4.

Re: AW: [iText-questions] RE: generating pdf through the Velocity

2005-09-22 Thread Siegfried Goeschl
For the mailing list ... Siegfried Goeschl wrote: Hi Dirk, I do not know the details of your application +) why do you not return the PDF directly as response of the HTTP request or make a redirect +) buffering the file on a disk is not always a bad idea - many people use an Apache in

Re: [iText-questions] pdf size restrictions

2005-09-22 Thread bruno
Alan Klikic wrote: I am using new PdfReader(String filename) constructor. In my iText lib there is no PdfReader that takes RandomAccessFileOrArray. It's rather new. I think it was introduced 2 versions ago. Anyway, there was a new version released today. I still have to post the

[iText-questions] [ANN:] iText 1.3.4

2005-09-22 Thread bruno
I have just release iText1.3.4: * Changes made by Paulo: o added adjustable margins to text fields to better mimic Acrobat 's layout o added PdfWriter.releaseTemplate() to free resources before close() o added support for macro PDF417

Re: [iText-questions] Does servlet work in tutorial?

2005-09-22 Thread bruno
Alan Zhang wrote: I downloaded latest tutorial: tutorial1.3.1.0 http://sourceforge.net/project/showfiles.php?group_id=15255package_id=152085release_id=326618. However when I tried out servlet examples, it gave me error. For example if I clicked the try it in index.html#silentprint, which

AW: AW: [iText-questions] RE: generating pdf through the Velocity

2005-09-22 Thread Dirk Doerflinger
Hi Siegfried, thanks for your reply. The Problem is that my VTL runs in the Context of the Intrexx Portal Framework. I can only place a VTL Part inside of a HTML-Page generated by Intrexx, therefore I don't have any possibility to generate or modify any Headers of the page (actually I only get a

[iText-questions] Re: Invalid or Corrupt Signature

2005-09-22 Thread Tom Vleminckx
Chris C ChrisC at postmark.net writes: Apologies for the long post. I am using iText (Version 1.3) to sign existing signatures fields in a PDF Document (using the Windows Certificate Security method). The signature fields were originally created using iText as well. I am getting an

[iText-questions] charactercodes in Symbol font

2005-09-22 Thread Matthias . Dillier
Hi all I encountered a problem with the charactercodes and the Symbol font (PS-Type1 Symbol). I did my tests on Windows XP with SUNs Java SDK 1.4.2._06 and iText 1.3 (based on itext-paulo-153). I use PdfGraphics2D to produce a pdf-file from a Graphics2D object. I want to print some text using

[iText-questions] adding dots to the of line - how to?

2005-09-22 Thread Stanislav Komlenac
Hi! I need to add dots as much is posible to the end of the line of the paragraph (RTF is generated at the end). Like: * * some text that is writen some text that is writen * * text that is writen end

RE: [iText-questions] Error while reading bad PDF

2005-09-22 Thread Paulo Soares
That's probably a currupt PDF. You can send me the PDF for inspection. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nalluri, Nageswara (ELS) Sent: Thursday, September 22, 2005 2:07 PM To: itext-questions@lists.sourceforge.net Subject:

RE: [iText-questions] charactercodes in Symbol font

2005-09-22 Thread Paulo Soares
PdfGraphics2D doesn't do automatic font substitution. If it's just Symbol it will work if you register it in DefaultFontMapper with the encoding name Symbol. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday,

[iText-questions] Problem with border of objects

2005-09-22 Thread Guillermo L. Odone
Hi there everyone! I'm having a little problem, I have a PDF designed with Acrobat Pro 7.0 and I put to every object (Textbox, Button, Checkbox, ...) a black border. My problem is that when I open it, setting some values, the fields to which I set the values, the border disappears, only, until I

RE: [iText-questions] Problem with border of objects

2005-09-22 Thread Paulo Soares
iText doesn't support Designer 7 forms. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Guillermo L. Odone Sent: Thursday, September 22, 2005 3:12 PM To: Itext-Questions Subject: [iText-questions] Problem with border of objects Hi there

Re: [iText-questions] adding dots to the of line - how to?

2005-09-22 Thread Mark Hall
On Thursday 22 September 2005 20:55, Stanislav Komlenac wrote: * * some text that is writen some text that is writen * * text that is writen end ... * How can i do this? How many dots do you want

RE: [iText-questions] Re: Invalid or Corrupt Signature

2005-09-22 Thread Paulo Soares
I'm not sure if there was ever a problem. Note that the self signed signature must be 1024 bit RSA with SHA1. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Vleminckx Sent: Thursday, September 22, 2005 12:45 PM To:

Re: [iText-questions] using CellEvent to check wether Text fits in cell or not

2005-09-22 Thread Michael Seib
Hi, thanks for the info. Is there a way to determine if a Text fits in a cell from within a CellEvent? regards Mike Am Donnerstag, 22. September 2005 10:49 schrieb Paulo Soares: If it worked like that in 1.02b it was a bug. A PdfPCellEvent must provide the real cell dimensions, in this case

[iText-questions] A question on PDF concatenation

2005-09-22 Thread the man
Hello, It has been a good number of years since I have looked at java and my memory of using it has faded. Do you have an example of a script I could look at which uses the PDF concatenation feature? I am trying to run iText on our UNIX server to put a couple of Oracle reports together, and I am

RE: [iText-questions] Error while reading bad PDF

2005-09-22 Thread Paulo Soares
File 1 doesn't open in Acrobat. File 2 has a missing font. -Original Message- From: Nalluri, Nageswara (ELS) [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 3:06 PM To: Paulo Soares Cc: itext-questions@lists.sourceforge.net Subject: RE: [iText-questions] Error while

RE: [iText-questions] Problem with border of objects

2005-09-22 Thread Guillermo L. Odone
I'm not using the designer!!, I'm using the Acrobat Professional 7!! -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nombre de Paulo Soares Enviado el: Thursday, September 22, 2005 11:13 AM Para: Guillermo L. Odone; Itext-Questions Asunto: RE: [iText-questions] Problem

RE: [iText-questions] Problem with border of objects

2005-09-22 Thread Paulo Soares
Send me one of the PDFs. -Original Message- From: Guillermo L. Odone [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 4:05 PM To: Paulo Soares; Itext-Questions Subject: RE: [iText-questions] Problem with border of objects I'm not using the designer!!, I'm using the

[iText-questions] Plans to support PDF/A?

2005-09-22 Thread Carsten Hammer
Hi Paulo, hi Bruno, are you going to support PDF/A (ISO-19005-1) like you support PDF/X (ISO-15930)? Here is the URL to the ISO Standard: http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=38920scopelist=PROGRAMME Here a URL to some information about it:

[iText-questions] Lists in table cells

2005-09-22 Thread Steven . Lukas
Hello Mr. iText, I have been playing around with the examples on your homepage. I have come across the following problem. When I try to add a List (roman, bullet etc.) to a cell in a table, the format of the list is lost (the List was entered inside a Phrase). May be I have missed an example

RE: [iText-questions] Printer's Spread with iText

2005-09-22 Thread Bill Ensley
Here is a Executable Jar that does just that. http://www.bearprinting.com/ReadersSpread.jar It's uploading now, so wait a few minutes. Bill Ensley Bear Printing -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of bruno Sent: Thursday, September 22, 2005

Re: [iText-questions] Plans to support PDF/A?

2005-09-22 Thread Bruno Lowagie
Carsten Hammer wrote: Hi Paulo, hi Bruno, are you going to support PDF/A (ISO-19005-1) like you support PDF/X (ISO-15930)? I have already implemented XMP metadata (which is part of the ISO). If you add PDF specific metadata, you can generate the corresponding XMP automatically. (See the

Re: [iText-questions] Lists in table cells

2005-09-22 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: Hello Mr. iText, if that is what you call him, there is more than one mr iText ;-) I have come across the following problem. When I try to add a List (roman, bullet etc.) to a cell in a table, the format of the list is lost (the List was entered inside a Phrase).

Re: [iText-questions] Plans to support PDF/A?

2005-09-22 Thread Leonard Rosenthol
At 12:34 PM 9/22/2005, Carsten Hammer wrote: are you going to support PDF/A (ISO-19005-1) like you support PDF/X (ISO-15930)? They could support PDF/A-B, but doing PDF/A-A isn't possible with the current iText functionality (though it could be added with a bunch of work).

Re: [iText-questions] Plans to support PDF/A?

2005-09-22 Thread Leonard Rosenthol
At 11:14 AM 9/22/2005, Leonard Rosenthol wrote: At 12:34 PM 9/22/2005, Carsten Hammer wrote: are you going to support PDF/A (ISO-19005-1) like you support PDF/X (ISO-15930)? They could support PDF/A-B, but doing PDF/A-A isn't possible with the current iText functionality (though it

Re: [iText-questions] Plans to support PDF/A?

2005-09-22 Thread Leonard Rosenthol
At 02:30 PM 9/22/2005, Bruno Lowagie wrote: Paulo told me he was thinking about adding some Tagged PDF support, so that would already be part of the PDF/A-A conformance requirement. Right - Tagged PDF support would be the big missing piece for PDF/A-1A support. The other include a

Re: [iText-questions] Plans to support PDF/A?

2005-09-22 Thread Paulo Soares
I'm already working on Tagged PDF support and from glancing the draft I don't see much problems in supporting PDF/A-1A. Paulo - Original Message - From: Leonard Rosenthol [EMAIL PROTECTED] To: Bruno Lowagie [EMAIL PROTECTED]; Carsten Hammer [EMAIL PROTECTED] Cc:

Re: [iText-questions] Plans to support PDF/A?

2005-09-22 Thread Leonard Rosenthol
At 04:22 PM 9/22/2005, Paulo Soares wrote: I'm already working on Tagged PDF support Excellent! Automated/tied into the layout system (paragraphs, chunks, etc.) or manual? (or both?) and from glancing the draft I don't see much problems in supporting PDF/A-1A.

[iText-questions] iText XML

2005-09-22 Thread Ritchie Masters
Hi there, I have been using the tutorial to build PDF documents mapping Custom Tags to iText Tags. However, I am having problems trying to create Tables. Is there any examples that I can use to demonstate this, as this is not covered in the tutorial. I can create the tables no problem in code but