[iText-questions] Table Problem Solved

2005-05-31 Thread Nicolas_Pace
I write to you because y solved the problem and wanted to share the solution with all of you. There were 2 problems here. One of them is when you try to work with big files, you have to manage your resources very carefully, to prevent memory leaks. The other point is that you can´t buffer the docum

[iText-questions] Number Formatting Problem

2005-05-31 Thread Peter Gillespie
iText:   Each month, I use itext lowagie to create four financial reports from xml files. Every time I create the reports, one of the dollar amounts on one of the reports is compressed horizontally.  The field is overwriting itself.  I tried to cut and paste in an example but was unable. 

[iText-questions] How to split a PDF on a bookmark base

2005-05-31 Thread Gino Scheppers
Hi,   I'm new to itext, is there a way to split a PDF (with bookmarks) into different PDF's and using the bookmark text as the name for the new file.   Has anyone get a code example ?   Regards,

[iText-questions] RTF Lettered Lists

2005-05-31 Thread Chirdeep Sharma
I am creating a list with default letter 'A' as starting. It creates the list in PDF correctly but in RTF it creates a bullet instead of A. The code: List l = new List(false, true, 10); l.setFirst('A'); l.add("This is a test"); List

[iText-questions] Table Problem

2005-05-31 Thread Nicolas_Pace
For those who haven´t read my last post i summarize what was it about. I have a script based from the threaded Servlet introduced in the tutorial, and it generates a pdf file that contains like a photo album, containing about 100 images of about 100k each. The program worked all right with about 30

[iText-questions] Table problem

2005-05-31 Thread Nicolas_Pace
Paulo: I break my table in pairs of rows, so they aren´t to big. And when i change the number of cells per table, nothing happens. Have you received the attached file?? When i close a table, i manually call the garbage collector so i think it´s not a memory problem. Anyway, thanks for your early an

[iText-questions] PdfStamp questions

2005-05-31 Thread Bill Sanders
I'm working on a application to convert TIFF's to PDF and merge a watermark. At this point, because there's a TIFF being imported and a JPG watermark, the watermark is either lost, under the TIFF or masked over the TIFF. I switched to stamping a single PDF (watermark) and over layed it to the TIF

[iText-questions] Help with Column positioning

2005-05-31 Thread leo
Hi, I am using PdfPTable to print the data on a pdf page. Now suppose that I have 8 columns in the PdfPTable on the first page and On the second page I have say 2 columns in the PdfPTable. The problem is the columns on second page are not aligned with column on the first page. I mean the two co

[iText-questions] printing a pdf document

2005-05-31 Thread David Graf
Is it possible to print a pdf document directly from java using itext? -- Weitersagen: GMX DSL-Flatrates mit Tempo-Garantie! Ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl --- This SF.Net email is sponsored by Yahoo. Introducing Yahoo! Searc

[iText-questions] annotations to jump to a specific page

2005-05-31 Thread gabriele rosa
hi, I have to create an annotated image. Clicking on the image I must jump to a specific page INSIDE the current document (that is, the file is not external). It seems to me that the contructor of Annotation class do not allow this: do I have to use a different class/method or I'm just missing s

RE: [iText-questions] Question about itext

2005-05-31 Thread Paulo Soares
See http://itextdocs.lowagie.com/tutorial/general/copystamp/index.html#intro > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of "Dominik Pürner" > Sent: Tuesday, May 31, 2005 2:11 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-que

RE: [iText-questions] How to insert pdf form fields in different pages??

2005-05-31 Thread Paulo Soares
That won't work with XML. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Tuesday, May 31, 2005 12:32 PM > To: itext-questions@lists.sourceforge.net; > [EMAIL PROTECTED] > Subject: [iText-questions] How to insert pdf f

RE: [iText-questions] How to get specific revision PDF

2005-05-31 Thread Paulo Soares
You can get signature revisions with AcroFields.extractRevision(). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Faisal Maqsood > Sent: Tuesday, May 31, 2005 1:11 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] How

RE: [iText-questions] Wrap text in a cell

2005-05-31 Thread Paulo Soares
If the word doesn't fit in the cell what did you expect? Use hyphenation. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Sai Venugopal > Sent: Tuesday, May 31, 2005 2:57 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions

RE: [iText-questions] Question about Pagenumber-Size (Textsize)

2005-05-31 Thread Paulo Soares
Do two passes. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Daniel Bick > Sent: Tuesday, May 31, 2005 10:26 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Question about Pagenumber-Size (Textsize) > > Hello! > I'

RE: [iText-questions] Pdf Resolution

2005-05-31 Thread Bill Ensley
I see from this thread that perhaps you aren't understanding that it doesn't matter whether you have images or not, Leonard is right, forget USER UNITS, it has already confused you. and 8.5 x 11 page, (Letter in America) is 612 x 792 points (8.5*72 x 11*72) This is NOT RESOLUTION!!!. it is only

RE: [iText-questions] potential market for iText book

2005-05-31 Thread Bill Ensley
Bruno, I'd buy the book whether I'd read it or not just to say thanks. Bill Ensley Bear Printing > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Bruno > Lowagie > Sent: Friday, May 27, 2005 3:22 AM > To: 'itext-questions@lists.sourceforge.net' > Subje

RE: [iText-questions] Pdf Resolution

2005-05-31 Thread Youssef Eldakar
Franck, You might be interested in the following: http://www.mail-archive.com/itext-questions%40lists.sourceforge.net/msg16437.html Youssef Eldakar Bibliotheca Alexandrina -Original Message- From: Franck JACOB [mailto:[EMAIL PROTECTED] Sent: Tue 5/31/2005 2:

[iText-questions] Wrap text in a cell

2005-05-31 Thread Sai Venugopal
How do I meaningfully wrap text in a cell? Right now the text "Development Cost" in a cell appears as follows: "Developm ent Cost" Kindly help me out. Thanks, Venu --- This SF.Net email is sponsored by Yahoo. Introducing Yahoo! Search Develop

Re: [iText-questions] How to compute changes of specific revision PDF with lastest revision

2005-05-31 Thread Leonard Rosenthol
At 08:14 AM 5/31/2005, Faisal Maqsood wrote: I checked that Adobe does compute the changes that were applied in between a specific revision and the latest one. Under certain circumstances, yes, that is true. It's not true in all cases, although PDF (the file format) allow it in all ca

[iText-questions] Question about itext

2005-05-31 Thread Dominik Pürner
Hello, I have got an Question about iText. Is it possible to take parts of pages of some pdf files and put they together into one new pdf file. I hope you can answer me. Sorry about the bad english because i'm german. Best Wishes Dominik Pürner -- Weitersagen: GMX DSL-Flatrates mit Tempo-Garant

Re: [iText-questions] Pdf Resolution

2005-05-31 Thread Franck JACOB
thank you, if I understood what you said, if I don't have images in my document, that's not a problem. If my document has images, I have to adapt my document size to the image with highest resolution in my document. so I have to adapt the font size of my text to the resolution, otherwise the fo

[iText-questions] How to get specific revision PDF

2005-05-31 Thread Faisal Maqsood
Hi, I want to get PDF document that was for a specific revision. I checked the API and I found some method to do so but I didn't checked that and also I've forgotten that class name. Is it possible in iText? Can anyone help on it? Regards, Faisal

Re: [iText-questions] Pdf Resolution

2005-05-31 Thread Leonard Rosenthol
At 07:36 AM 5/31/2005, Franck JACOB wrote: thank you, if I understood what you said, if I don't have images in my document, that's not a problem. Correct. If my document has images, I have to adapt my document size to the image with highest resolution in my document. No!

[iText-questions] How to insert pdf form fields in different pages??

2005-05-31 Thread anitha . d . chandran
Hi, I am trying ton insert pdfForm fields in a 5 page Document. One field, I need to isert in the 4th page and the rest in page5. This is the code snippet, I use for the same.. But, even if I specify the page Number as 4 and 5, all the form fields, comes in the last(5th) page only. Could you

[iText-questions] Question about Pagenumber-Size (Textsize)

2005-05-31 Thread Daniel Bick
Hello! I'm using iText for generating a small Report in my application - well not too small, thats why I have a question. I use a header (a PdfPTable with some information an a logo) in which the pagenumber is listed. Its in the upper rigth corner, so the cell's align is set to rigth. The proble

Re: [iText-questions] Pdf Resolution

2005-05-31 Thread Leonard Rosenthol
At 03:58 AM 5/31/2005, Franck JACOB wrote: I don't have any image in my document. Then I don't understand your original question, since text & vector data in a PDF is resolution INDEPENDANT! In the library user guide, it is said that to obtain the document size in points, you have

Re: [iText-questions] Pdf Resolution

2005-05-31 Thread Bruno Lowagie
Franck JACOB wrote: Hello, I don't have any image in my document. In the library user guide, it is said that to obtain the document size in points, you have to calculate the dimension in cm /2.54 *72, so my resolution is 72 dpi. No, it just says, an inch is 72 points. Just like there are

Re: [iText-questions] Pdf Resolution

2005-05-31 Thread Franck JACOB
Hello, I don't have any image in my document. In the library user guide, it is said that to obtain the document size in points, you have to calculate the dimension in cm /2.54 *72, so my resolution is 72 dpi. But if you multiply by 300 instead of 72, my document real size is going to be bigger