[iText-questions] Frank Zhou/ReserveFunds is out of the office.

2004-10-08 Thread Frank_Zhou
I will be out of the office starting 10/08/2004 and will not return until 10/11/2004. I will respond to your message when I return. --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your busin

[iText-questions] iText and transparency of images

2004-10-08 Thread Andrea Antonello
Hy to everybody, I see the amazing iText is also able to handle transparency on graphics2D shapes such as filled rectangles or ellipses. In the case of images the transparency is not kept into consideration. Is there another way to achieve the goal? Will there be one? Did I miss something? Tha

[iText-questions] Frank Zhou/ReserveFunds is out of the office.

2004-10-08 Thread Frank_Zhou
I will be out of the office starting 10/08/2004 and will not return until 10/11/2004. I will respond to your message when I return. --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your busin

Re: [iText-questions] html to pdf iText

2004-10-08 Thread Jim Hurne
I had this problem. The solution: put "", although you will also have to specify the XHTML DTD if the parser is going to treat everything correctly... The SAXmyHtmlHandler class only handex XHTML, not normal HTML. Luckily, converting from HTML to XHTML isn't a very painful process. Checkout h

Re: [iText-questions] Comb characters

2004-10-08 Thread Paulo Soares
The formats in Acrobat are done with JavaScript and are out of the understanding of iText. You'll have to make your formating. Note that you can have a value different from the appearance, see AcroFields.setField(String,String,String). Best Regards, Paulo Soares - Original Message - From

Re: [iText-questions] Re: nested table problems

2004-10-08 Thread Paulo Soares
Do you want me to guess what you put in the document? - Original Message - From: "Mayank Mishra" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 08, 2004 14:53 Subject: [iText-questions] Re: nested table problems > Paulo when I create the document using the new release

Re: [iText-questions] Page numbering problem

2004-10-08 Thread Paulo Soares
See the example headers_and_watermarks.java at itextpdf.sf.net. Best Regards, Paulo Soares - Original Message - From: "Scott Johnston" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 08, 2004 19:39 Subject: [iText-questions] Page numbering problem Hi All, Here is

RE: [iText-questions] Page numbering problem

2004-10-08 Thread Scott Johnston
Thank you so much Steve! My current code is extremely close to this, and the onEndPage event is going to save my butt! Scott Johnston Salus Systems Ltd. 23-3318 Oak St Victoria, BC V8X 1R1 250.370.9963 x23 -Original Message- From: Steve Appling [mailto:[EMAIL PROTECTED] Sent: October

Re: [iText-questions] Page numbering problem

2004-10-08 Thread Steve Appling
I had a similar problem where I wanted to do some special handling of the end of a page only when I was rendering a table. I handled it by making a class derived from PdfPageEvent that has a boolean member, inTable. I always set the inTable flag before attaching a table and clear it afterwards.

[iText-questions] Frank Zhou/ReserveFunds is out of the office.

2004-10-08 Thread Frank_Zhou
I will be out of the office starting 10/08/2004 and will not return until 10/11/2004. I will respond to your message when I return. --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your busin

[iText-questions] html to pdf iText

2004-10-08 Thread adam
Hi ! i've got problems with iText I have following code:       Document document = new Document();PdfWriter pdfw = null; try {    pdfw = PdfWriter.getInstance(document, new FileOutputStream("..\\webapps\\bank1\\files\\pdf\\adam.pdf"));    d

[iText-questions] Page numbering problem

2004-10-08 Thread Scott Johnston
Hi All,   Here is my problem:  I have a long PDF that I am generating that consists of many 1 page (normally) reports that consists of a single table.  On most of these pages, I don’t need page numbers to be displayed.  Unfortunately, some of these reports span multiple pages if the table

RE: [iText-questions] Comb characters

2004-10-08 Thread Merlyn Mathias
  Hi Paulo,   I did not know about the new release until I read your mail today. I downloaded it, and the comb problem is solved. It looks very good. Thank you so much.   I have another question. I have a date field in the PDF form to be displayed in mm/dd/ format. I get the data from the datab

RE: [iText-questions] itext and svg-picture

2004-10-08 Thread Bill Ensley
There is an example in the mail archives in the last few months of how to use Batik to transcode into iText -Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of felix haberlach Sent: Friday, October 08, 2004 4:55 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTE

Re: [iText-questions] Adding Horizontal Line to Table

2004-10-08 Thread Steve Appling
Make sure you are using a PdfContentByte obtained from the current writer. Something like: PdfContentByte cb = writer.getDirectContent(); See the Example Chap1001.java in the tutorial at :http://www.lowagie.com/iText/tutorial/ch10.html#simplegraphics If your trying to have a line below your hea

Re: [iText-questions] Make Image-Only PDF?

2004-10-08 Thread frederick
That's right, AdLib doesn't seem like the cure-all, that's for sure. We've been using it's add-on OCR capability to create a rasterized version of the PDF. It's really a round-about, slow way of doing it. Basically, we're looking for a way to make these PDF's self-sustained by either rasterizing

RE: [iText-questions] PDF in Chinese & russian. (TF8 encoding or fonts?

2004-10-08 Thread Paulo Soares
The encoding is specified in BaseFont.createFont(). UTF-8 has nothing to do with java in this sense as a String is always UTF-16 and that's what we need. Start by reading http://www.lowagie.com/iText/tutorial/ch09.html and BaseFont javadocs. There are also examples at http://itextpdf.sf.net.

[iText-questions] Frank Zhou/ReserveFunds is out of the office.

2004-10-08 Thread Frank_Zhou
I will be out of the office starting 10/08/2004 and will not return until 10/11/2004. I will respond to your message when I return. --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your busin

[iText-questions] Adding Horizontal Line to Table

2004-10-08 Thread Kim, Glen
Title: Adding Horizontal Line to Table Apologies if this was asked and answered before. I am trying to add a horizonal line to a table as a delimiter for my table header. Here is the code snippet that I used but is not working for me:         Graphic grx = new Graphic();   

[iText-questions] itext and svg-picture

2004-10-08 Thread felix haberlach
Hello Everyone! I have´a Question about itext and svg. I wrote a java-programm that creates a Pdf-file with normal text. Now i was thinking about adding a picture to the pdf. My question is: is it possible to add svg-pictures? cause in the itext-doc i can't find a word about svg... What can i do?

Re: [iText-questions] Make Image-Only PDF?

2004-10-08 Thread Leonard Rosenthol
At 09:45 AM 10/8/2004, [EMAIL PROTECTED] wrote: Yes, we've been using AdLib, but have found it to be unstable a lot of the time. AdLib doesn't support embedding of non-embedded fonts... However, products such as PDF Enhancer & PitStop do. We were hoping to be able to use iText to

[iText-questions] Re: nested table problems

2004-10-08 Thread Mayank Mishra
Paulo when I create the document using the new release that u suggested I cannot see any contents in the pdf document created even though the doc size is not zero. regards mm --- This SF.net email is sponsored by: IT Product Guide on ITManag

Re: [iText-questions] Make Image-Only PDF?

2004-10-08 Thread frederick
Yes, we've been using AdLib, but have found it to be unstable a lot of the time. It also creates a complicated multistep process using its XML job ticketing. We were hoping to be able to use iText to create a single script that can do everything we need. AdLib works, we're just looking to simpli

Re: [iText-questions] Fonts- RTF

2004-10-08 Thread Mark Hall
On Friday 08 October 2004 15:25, sachin wrote: > how can i use different fonts in RTF ... like i want to use my own font > ... how i will introduce it in the code... If you are using the old RtfWriter then use com.lowagie.text.rtf.RtfFont to add your own fonts. If you are using the new RtfWrite

RE: [iText-questions] PDF in Chinese & russian. (TF8 encoding or fonts?

2004-10-08 Thread Parag Sagar
Paulo,   Thanks for the information. Can you share some experpt of code for the same. I am looking where to specify the encoding? Also, I think  I need to change the fonts based on the coming locale.   Thank for you help, Parag Sagar  -Original Message-From: Paulo Soares [mailto:

[iText-questions] Fonts- RTF

2004-10-08 Thread sachin
Hi, how can i use different fonts in RTF ... like i want to use my own font ... how i will introduce it in the code... sachin --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Te

[iText-questions] ICC profile from Image

2004-10-08 Thread Thomas Kübler
hallo, i wan't to extract from a image the embedded icc-profile. so first a try to get the information from the image if a profile is embedded with if ( img.hasICCProfile() ) { // then fetch ICC_Profile imageICCProfile = img.getICCProfile();

Re: [iText-questions] Variable size form XObjects

2004-10-08 Thread Leonard Rosenthol
At 10:41 PM 10/7/2004, Steve Appling wrote: I would like to output text in the form of "This has VARIABLE stuff", where VARIABLE is text content that will not be known until the end of document processing. In that case, the best way to do this is to do two passes - the first which builds

[iText-questions] Frank Zhou/ReserveFunds is out of the office.

2004-10-08 Thread Frank_Zhou
I will be out of the office starting 10/08/2004 and will not return until 10/11/2004. I will respond to your message when I return. --- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your busin

RE: [iText-questions] Comb characters

2004-10-08 Thread Paulo Soares
Did the itext-paulo-139 version solved the comb problem?   Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paulo SoaresSent: Tuesday, September 28, 2004 4:53 PMTo: Merlyn Mathias; [EMAIL PROTECTED]Subject: RE: [iText-questions] C

RE: [iText-questions] Re: nested table problems

2004-10-08 Thread Paulo Soares
Use the version at itextpdf.sf.net. See the example split_long_rows.java. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Mayank Mishra > Sent: Friday, October 08, 2004 5:47 AM > To: [EMAIL PROTECTED] > Subject: [iTex

RE: [iText-questions] Variable size form XObjects

2004-10-08 Thread Paulo Soares
What you want will not work. You can't do reflow in PDF (only in tagged but that's not applicable here) and furthermore once you do a newPage the previous page is lost for changes, be it annotation or content. It works with templates because the page has a reference to a template but that's all you