[iText-questions] javadocs

2003-07-17 Thread Yuan Chang
Hiya, I'm trying to locate the javadocs for the com.lowagie.text.*; com.lowagie.text.pdf.* etc libraries. I wonder if anyone could supply me with a link to them. Thanks regards, Yuan Chang -- NOTICE: If received in error, please destroy and notify sender. Sender does not waive

Re: [iText-questions] javadocs

2003-07-17 Thread Bruno Lowagie
Yuan Chang wrote: Hiya, I'm trying to locate the javadocs for the com.lowagie.text.*; com.lowagie.text.pdf.* etc libraries. I wonder if anyone could supply me with a link to them. online: http://itext.sourceforge.net/docs/ download: http://itext.sourceforge.net/downloads/docs.tar.gz

Re: [iText-questions] How to create bookmark that points to a table with customoutline name

2003-07-17 Thread Cosmin Popa
Yes, but I did not understand how... Any example? Any reference to doc? Thank you, Cosmin Popa From: Paulo Soares [EMAIL PROTECTED] To: Cosmin Popa [EMAIL PROTECTED],[EMAIL PROTECTED] Subject: Re: [iText-questions] How to create bookmark that points to a table with custom outline name Date:

Re: [iText-questions] How to create bookmark that points to a tablewith custom outline name

2003-07-17 Thread Bruno Lowagie
Cosmin Popa wrote: Yes, but I did not understand how... Any example? Any reference to doc? http://www.lowagie.com/iText/tutorial/ch11.html#outlines --- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating

Re: [iText-questions] Xml concern

2003-07-17 Thread Paulo Soares
You can't have UTF-8 in property files. The encoding is ISO-8859-1 and for characters outside the range the notation \u is used just like in the java source files. Best Regards, Paulo Soares - Original Message - From: Mark Goking [EMAIL PROTECTED] To: Bruno [EMAIL PROTECTED] Cc:

Re: [iText-questions] Ideas to accomplish modified keep together and add background image?

2003-07-17 Thread Paulo Soares
You definitively need ColumnText. ColumnText can simulate the writing to check if text fits and can also give the number of lines output. Best Regards, Paulo Soares - Original Message - From: Tom Kofford [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 16,

Re: [iText-questions] How to create bookmark that points to a table with custom outline name

2003-07-17 Thread Bruno
Quoting Cosmin Popa [EMAIL PROTECTED]: With all my respect, I did not understand how to point to a table located at page 70 (by example)... If somebody asks a question that can be answered with everything that is in the tutorial, you won't receive other answers like this one:

Re: [iText-questions] Xml concern

2003-07-17 Thread Grzegorz Kucner
There is a tool in java SDK called native2ascii which allows you to convert properties files to proper format from UTF8. I've used it succesfully with properties files written in russian and polish. You can use ant to convert properties files by putting following target in ant's build.xml file:

[iText-questions] Anyone got vietnamese fonts?

2003-07-17 Thread Mark Goking
Hi, anyone got fonts for vietnamese that I could use? The ones in iTextAsian are for chinese, japaense and korean only :) --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.501 / Virus Database: 299 - Release Date: 7/14/2003

Re: [iText-questions] Compare PDF documents

2003-07-17 Thread Matt Benson
Depending on what you want to compare, you could have some options... if you wanted to compare the text, you could use some form of text extraction from JPEDAL, PdfBox, or one more I can never think of... and compare the text, or generate checksums from text and compare those (works for me). if

[iText-questions] Re: iText-questions digest, Vol 1 #1347 - 14 msgs

2003-07-17 Thread Teri Radichel
Hi, I am trying to put a barcode on a page and having problems. I can get the barcode to appear, however I cannot figure out how to position it correctly. I have tried three different ways - with the document.add example in the tutorial the barcode appears correctly but I can't figure out how

[iText-questions] pdfptable height

2003-07-17 Thread Rolando Cuevas
Hello, I´m creating pdfs with header data coming from databases. Until now I have used a fixed header height and tableevents, this way headers can be tables with images and text. It works fine. However this is not enough for all cases. Header data sometimes is mixed with content. To obtain

Re: [iText-questions] Re: iText-questions digest, Vol 1 #1347 - 14 msgs

2003-07-17 Thread Paulo Soares
You don't need placeBarcode, the work was already done in the createImageWithBarcode. Best Regards, Paulo Soares - Original Message - From: Teri Radichel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 17, 2003 17:58 Subject: [iText-questions] Re: iText-questions digest, Vol

RE: [iText-questions] Re: iText-questions digest, Vol 1 #1347 - 14 msgs

2003-07-17 Thread Teri
Ok thanks. Actually my problem is that I cannot get the barcode to display at the correct top and left position on the pdf document. I tried three different possible ways of getting this to work as noted below and no luck. Could you provide some example code to generate the barcode and get it to

[iText-questions] Calculating inverse transform

2003-07-17 Thread Jaladurgam, Ramana
How do we replace the transformation matrix to original once the required settings are applied?? Regards, Ramana.JV. This email may contain confidential material. If you were not an intended recipient, Please

[iText-questions] RE: Calculating inverse transform

2003-07-17 Thread Jaladurgam, Ramana
Thought of adding more detail. I have rotated text using affineTransform.rotate(90, 100, 100); PdfContentByte.transform(affineTransform); Added the text. Now all the further text elements are also getting rotated. How can I transform the matrix to the original position?

Re: [iText-questions] Calculating inverse transform

2003-07-17 Thread phillip
How do we replace the transformation matrix to original once the required settings are applied?? Use save and restore. You do not have to find the inverse matrix. -- With regards Phillip Pan --- --- This SF.net email is

Re: [iText-questions] Compare PDF documents

2003-07-17 Thread Leonard Rosenthol
At 9:12 AM -0700 7/17/03, Matt Benson wrote: if you wanted to compare the text, you could use some form of text extraction from JPEDAL, PdfBox, or one more I can never think of... Multivalent. and compare the text, or generate checksums from text and compare those (works for me). Definitely

[iText-questions] RE: Anyone got vietnamese fonts?

2003-07-17 Thread Mark Goking
Paolo, thanks. But what font shall be used in the BaseFont.createFont() ?? BaseFont bfVietnamese = BaseFont.createFont(, Identity-H, BaseFont.NOT_EMBEDDED); Bruno, can BaseFont be used in XML? How? I made my own but it didnt work. I thought maybe having this tag may be the

RE: [iText-questions] Adding square root symbol to pdf

2003-07-17 Thread Mark Goking
Please ignore my email about what font to use for Vietnamese. I already got it Hi, yes I did read all your replies and yes you did answer most of them pertaining to the pure java code only, not the xml and tagmap part :). Actually I managed to make it work for both Chinese and Vietnamese fonts.