RE: [iText-questions] Barcode "Decodbility"

2003-08-04 Thread Brook Stevens
Title: RE: [iText-questions] Barcode "Decodbility" So is this intrinsic of using pdfs, or intrinsic in using images in a pdf (i.e. if I use a barcode font all my woes will go away?) Also you lost me on this statement: > The code may decode well but as the pixels > may be off by 0.5 if the re

RE: [iText-questions] Drawing indexes

2003-08-04 Thread Paulo Soares
Set a generic tag to the last chunk in the last line. Catch the event in a page event and there you have the rectangle with the chunk position. Best Regards, Paulo Soares > -Original Message- > From: Carmona Perez, David [SMTP:[EMAIL PROTECTED] > Sent: Monday, August 04, 2003 17:21 > To:

[iText-questions] junit tests

2003-08-04 Thread Moses Hohman
Hi folks, I saw a message in the archives by Somik at Industrial Logic about checking in some code he wrote to make pdf doc generation with iText more easily unit-testable. Was this done, and could someone who knows about it please point me in the right direction? I am very interested in w

Re: [iText-questions] Template cutting off bottom of text . . .

2003-08-04 Thread Andrew McLaughlin
Perhaps you're rendering the page number info too close to the bottom margin? Or there is another white object just below? Andrew On Thursday, July 31, 2003, at 03:12 PM, Tom Kofford wrote: I am using a template in order to print "Page x of y" on every page. I am using the Chap1201.java ex

[iText-questions] Drawing indexes

2003-08-04 Thread Carmona Perez, David
Hi all,   I want to create an index, and write a paragraph and alter the paragraph a dotted line to the page number, like in this way     My index entry….Page 1 A very long long long long long long long long long long long    long long index entry…

RE: [iText-questions] ICC support

2003-08-04 Thread Paulo Soares
iText can produce a compliant PDF/X document but it doesn't check the validity of each object. In other words, you must know what you are doing. The output intent can be added to the catalog either using a known OutputConditionIdentifier or by embedding a stream with the actual profile. The image.t

RE: [iText-questions] ICC support

2003-08-04 Thread Leonard Rosenthol
At 08:25 AM 8/4/2003 -0700, Yishai Steinhart wrote: How do I set an ICC as the output intent in a PDF document with itext? I am not sure if iText offers that function today, since it's part ot the PDF/X standard and I don't think Paulo has finished that work yet. Will setting each image

RE: [iText-questions] ICC support

2003-08-04 Thread Yishai Steinhart
How do I set an ICC as the output intent in a PDF document with itext? Will setting each image ICC with image.tagICC do the same? -Yishai > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Leonard > Rosenthol > Sent: Friday, August 01, 2003 10:07 AM > To:

RE: [iText-questions] PDF Fonts are jumbled

2003-08-04 Thread Paulo Soares
That problem happens when the files have fonts with the same subset name. Until recently iText generated the same prefixes. Regenerate your files with the latest iText version or download the latest itext-paulo that has the method PdfReader.shuffleSubsetNames() that you can apply at each document r

[iText-questions] New release itext-paulo-124

2003-08-04 Thread Paulo Soares
Changes in itext-paulo-124 (2003-08-04) - several changes made to ease the port to jdk 1.1 - the port to jdk 1.1 is back again. Source and jar is provided. The jar is compiled in compatibility mode (-target 1.1) with jdk 1.4 and the bootclasspath set to jdk 1.1.8. If it works

[iText-questions] PDF Fonts are jumbled

2003-08-04 Thread Chris Yeo
hi, I have merged a few pdf files (10)+ with 30-40 pages in total with the ImportedPage function. But after merging, some of the fonts in the merged pdf file seems to have jumbled. (See attachment) Any reasons why that will happen? I have tried 5.x and 6.0 adobe reader and the same problem happe

RV: [iText-questions] PdfPTableEvent and Templates

2003-08-04 Thread Carmona Perez, David
More info added to the original message... -Mensaje original- De: Carmona Perez, David Enviado el: lunes, 04 de agosto de 2003 11:54 Para: 'Paulo Soares' Asunto: RE: [iText-questions] PdfPTableEvent and Templates I have more clues about what really happens. I'm working in a servlet env

RE: [iText-questions] (no subject)

2003-08-04 Thread Paulo Soares
All that works. Maybe you should post a short snippet of your code. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] > Sent: Monday, August 04, 2003 10:04 > To: itext > Subject: [iText-questions] (no subject) > > Hi, > > Im tryng t

RE: [iText-questions] Zapf-Dingbats

2003-08-04 Thread Paulo Soares
You must know your fonts. Fonts of this kind are symbolic and most of the symbols don't even exist in Unicode. The font wingdings has many arrows that might suit you. Try this: BaseFont bf = BaseFont.createFont("c:\\winnt\\fonts\\wingding.ttf", "", true); Font ff = new Font(bf, 20); document.add(n

RE: [iText-questions] Any API to decrypt PDF?

2003-08-04 Thread Paulo Soares
> -Original Message- > From: Michael Foo [SMTP:[EMAIL PROTECTED] > Sent: Monday, August 04, 2003 3:24 > To: [EMAIL PROTECTED] > Subject: RE: [iText-questions] Any API to decrypt PDF? > > Hi Paulo > Do you mean that I have to use the PDFReader to input my owner- > password-protecte

RE: [iText-questions] navigate to a PDF page

2003-08-04 Thread Paulo Soares
Depending on what you want to do you can use templates or you can create your document and load it with PdfStamper to put more content at your pages of choice. Best Regards, Paulo Soares > -Original Message- > From: Gary Wu [SMTP:[EMAIL PROTECTED] > Sent: Monday, August 04, 2003 1:28 > To

RE: [iText-questions] Anchor behavior

2003-08-04 Thread Paulo Soares
If you have a anchor.setReference("#someName") you must have somewhere else a anchor2.setName("someName"). Best Regards, Paulo Soares > -Original Message- > From: Carmona Perez, David [SMTP:[EMAIL PROTECTED] > Sent: Monday, August 04, 2003 10:15 > To: Itext-Questions (E-mail) > Subject:

[iText-questions] Anchor behavior

2003-08-04 Thread Carmona Perez, David
I receive an exception ExceptionConverter: java.lang.RuntimeException: The name 'anchor2' has no local destination., when trying to execute the following simple program.   If I change   anchor1.setName(" "); by   anchor1.setName("something");   then the document is generated

[iText-questions] (no subject)

2003-08-04 Thread [EMAIL PROTECTED]
Hi, Im tryng to create a pdf document placing text in absolutes positions, using the showTextAligned method showe in the 10th chapter of iText tutorial. Is it possible to use differente font sizes inside the same PdfContentByte. I tried to use twice the statement setFontAndSize with two different

[iText-questions] [TABLE] the workflow of tables

2003-08-04 Thread Klaus Bertram
Hi Bruno, congratulation to the iText programm, it's a nice and smart framework for pdf generation. So at the moment I use the Itext version of itext-jdk1.1-124.zip from paulo for a small utility programm for barcode generation. But I have trouble with the Table implementation and debugged a li

[iText-questions] Zapf-Dingbats

2003-08-04 Thread Johansson Henrik (Svensk Börsinformation)
Hi, I am rather new to both itext and Pdf and I have a problem concerning the ITC Zapf-Dingbats font. I have been informed that a certain Symbol should be present in the font but I have not been able to find it! I have tried several different font files, iterating over a unicode set I found som