RE: [iText-questions] New release itext-paulo-142

2004-11-15 Thread Wagle, Shriniwas
How do I correlate the itext version at http://itextpdf.sourceforge.net and the one at http://www.lowagie.com/iText? Is one of these iText's more official than the other? Will ALL the changes made as listed below make it to the version at http://www.lowagie.com/iText ? Or is the version at http:

Re: [iText-questions] Re: Image names contained in a PDF document

2004-11-15 Thread Leonard Rosenthol
At 02:27 PM 11/15/2004, Sven Henckel wrote: Leonard Rosenthol pdfsages.com> writes: > >Is it possible with iText to get a list of all images (= file names of the > >images) which are contained in a PDF document? > > Nope, because the original image names aren't stored in a PDF. > > Leona

[iText-questions] Re: Image names contained in a PDF document

2004-11-15 Thread Sven Henckel
Leonard Rosenthol pdfsages.com> writes: > > At 01:49 PM 11/14/2004, Sven Henckel wrote: > >Is it possible with iText to get a list of all images (= file names of the > >images) which are contained in a PDF document? > > Nope, because the original image names aren't stored in a PDF. >

[iText-questions] Displaying Images in POF document

2004-11-15 Thread Siddharth Degar
Hi , I am trying to display a GIF image in a PDF document and am using iText. I am getting an exception . Any help would be appreciated Thanks Sid The code that I use to pull the pdf is         String gifURL="http://"+req.getServerName();                 gifURL =  gifURL+"/test/images/myima

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

2004-11-15 Thread Paulo Soares
Changes in itext-paulo-142 (2004-11-15) - all the cvs changes except BuildSite.java. - the methods related to the MK dictionary were moved from PdfFormField to PdfAnnotation. - new constructor PdfStream(InputStream,PdfWriter) to create streams without temporary arrays. Pd

RE: [iText-questions] UTF-8 Characters from XML to PDF

2004-11-15 Thread Richard Corfield
Many thanks once again. It works well now! Regards Richard On Mon, 15 Nov 2004 16:09:25 -, Paulo Soares wrote: > If you create the font: > > Font font = new Font(Font.HELVETICA, 12); > > it will work. If you create it through FontFactory you'll have a Font > instance created from a BaseF

RE: [iText-questions] reading encrypted pdf

2004-11-15 Thread Paulo Soares
Works for me using itext-paulo-141. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Sa Sh > Sent: Monday, November 15, 2004 6:43 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] reading encrypted pdf > > When I try to open an encrypted p

RE: [iText-questions] UTF-8 Characters from XML to PDF

2004-11-15 Thread Paulo Soares
If you create the font: Font font = new Font(Font.HELVETICA, 12); it will work. If you create it through FontFactory you'll have a Font instance created from a BaseFont and it won't work in this context. If you don't want to use an external font, create the Phrase as the example font_selector.jav

RE: [iText-questions] How to add extra Form Fields

2004-11-15 Thread Paulo Soares
It's just like you do in PdfWriter. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of wang yun > Sent: Monday, November 15, 2004 6:01 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] How to add extra Form Fields > > Dear Support, > > Do y

RE: [iText-questions] UTF-8 Characters from XML to PDF

2004-11-15 Thread Richard Corfield
Thanks for your reply, Paulo. I have managed to get greek chars from the XML to the PDF now, however it only works if I do not specify the font in a Phrase(), i.e.: values.addElement(new Phrase(fcval)); If I try to specify a font it does not work: Font times = FontFactory.getFont(FontFactor

Re: [iText-questions] Table cell with different border

2004-11-15 Thread Steve Appling
Use setBoder to set up a bitwise combination of the border sides you wish enabled on each cell. Ex: cell.setBorder(LEFT | TOP) to have only a top and left side border. Alternatively, you can use the variable border width methods in itext-paulo-141 at itextpdf.sf.net to set differing widths on

[iText-questions] Table cell with different border

2004-11-15 Thread Huelsemann, Gerlinde
I'm new to i-text. Do you have an example for a table with following layout. +---+-+ | 1.1 | 1.2 | | 2.1 | | +---+---+ | | 3.1 | 3.2 | | | 4.1 | 4.2 | | +-+-+-+-+--