[iText-questions] Assistance with SocketException

2008-01-07 Thread Paul Bundick
I'm new to iText, but am very excited about the potential that it has to really increase the professionalism and usefulness of a web application that I've built for a small business that I run. I've purchased Bruno's book iText in Action, have read the appropriate chapters on web applications, and

[iText-questions] can i unregistrate

2008-01-07 Thread Sangil Jung
I want a maillinglist secession as this email([EMAIL PROTECTED]), how can i do that~? best regards~ - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Sou

Re: [iText-questions] iText Problem

2008-01-07 Thread mister bean
It's hard to know what to recommend without knowing what your content is. If your content is text, then increase the margins on the page until there is no overlap. If it's an image, scale the image, using the scaleToFit methods as described in the book. ---Mister Bean hoss * wrote: > > Dear S

Re: [iText-questions] (no subject)

2008-01-07 Thread Xavier Le Vourch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mukherjee, Sankar wrote: > > Which version of itext has this XmpWriter class - " import > com.lowagie.text.xml.xmp.XmpWriter"? Looking at the svn repository, it was first introduced in version 1.3.4, more than 2 years ago. Xavier > > Thanks >

[iText-questions] (no subject)

2008-01-07 Thread Mukherjee, Sankar
Which version of itext has this XmpWriter class - " import com.lowagie.text.xml.xmp.XmpWriter"? Thanks sankar ** Confidentiality Note: This message and any attachments may contain legally privileged and/or confidential in

[iText-questions] iText Problem

2008-01-07 Thread hoss *
Dear Sir; i have a problem when using iText to produced pdf , when i insert header and footer on each pdf page the header will be override the content of the page, so i need to know how i can shrunk the pdf content to insert the header before the content. Thanks Hossam Rgaab --

Re: [iText-questions] clipping/deleting data

2008-01-07 Thread Leonard Rosenthol
If you are getting a raster image, then I would look into using JAI or the equivalent to crop/clip stuff outside your viewable area and then place it into the PDF. If you are working with combined text, vector, raster - then iText isn't going to help you. There are, however, commercial sol

Re: [iText-questions] cant find the AcroFields.regenerateField()

2008-01-07 Thread ayeen
sorry, i found the answer...i installed the v2.0.7 ayeen wrote: > > > sorry for the stupid question but my compiler can't find the > AcroFields.regenerateField() and other fields like > decodeGenericDictionary(). am i using an old version of the itext? > > thanks! > > -- View this messa

[iText-questions] Blank pages only

2008-01-07 Thread Carlos de Luna Saenz
I am creating a PDF document wth the following code: public void encodeBegin(FacesContext contexto){ log.debug("Generando PDF"); this.setDataTableFields(); Font font8 = FontFactory.getFont(FontFactory.HELVETICA, 32); ResponseWriter out = contexto.getResponseWrite

Re: [iText-questions] PdfWriter.FitsPage

2008-01-07 Thread trs
I looked for something on the simulation mode in the tutorial and did not find anything. Do you have a simple example you could post for e-mail me. Thank You! - Check out the new SourceForge.net Marketplace. It's the be

Re: [iText-questions] PdfWriter.FitsPage

2008-01-07 Thread Bruno Lowagie
trs wrote: What do I use now to determine if the PDFPTable will fit on a page? Create a ColumnText object. Add the table to the column. Add the column to the document in simulation mode. The ColumnText will tell you if the Table fits the page or not. br, Bruno smime.p7s Description: S/MIME C

[iText-questions] PdfWriter.FitsPage

2008-01-07 Thread trs
I have been using 4.0.4 ItextSharp. I have several calls that use PefWriter.FitsPage passing a PdfPTable. I just downloaded 4.0.7 and FitsPage does not accept PdfPTable any more just Table. What do I use now to determine if the PDFPTable will fit on a page? Thank YoU! ---

Re: [iText-questions] cant find the AcroFields.regenerateField()

2008-01-07 Thread ayeen
btw, i'm using itext-1.4.2.jar ayeen wrote: > > > sorry for the stupid question but my compiler can't find the > AcroFields.regenerateField() and other fields like > decodeGenericDictionary(). am i using an old version of the itext? > > thanks! > > -- View this message in context:

[iText-questions] cant find the AcroFields.regenerateField()

2008-01-07 Thread ayeen
sorry for the stupid question but my compiler can't find the AcroFields.regenerateField() and other fields like decodeGenericDictionary(). am i using an old version of the itext? thanks! -- View this message in context: http://www.nabble.com/cant-find-the-AcroFields.regenerateField%28%29-tp14

Re: [iText-questions] adding metadata to existing document?

2008-01-07 Thread Bruno Lowagie
TheVinc wrote: hello, can anyone tell me if it's possible to add metadata (f.e. addTitle(), addAutor(),...) to an existing PDF-File? Please read the book, and you'll find this example: http://itext.ugent.be/itext-in-action/examples/chapter02/HelloWorldAddMetadata.java Note that both tradition

[iText-questions] adding metadata to existing document?

2008-01-07 Thread TheVinc
hello, can anyone tell me if it's possible to add metadata (f.e. addTitle(), addAutor(),...) to an existing PDF-File? Thanks TheVinc -- View this message in context: http://www.nabble.com/adding-metadata-to-existing-document--tp14668779p14668779.html Sent from the iText - General mailing list

Re: [iText-questions] BMP in PDFs

2008-01-07 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Antonios Papadakis-Pesaresi > Sent: Monday, January 07, 2008 1:52 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] BMP in PDFs > > Hello, > > I am trying to add & ret

Re: [iText-questions] clipping/deleting data

2008-01-07 Thread Ziegler Stefan
I think this behaviour is on purpose. And for me it makes sense (unfortunately...). If you have a raster output you will have no problems since the data is gone, if you request not a raster map but the data itself you want the whole feature. And Geoserver is a WMS/WFS server and the clipping would

Re: [iText-questions] clipping/deleting data

2008-01-07 Thread Paulo Soares
You should ask the geoserver developers about that. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Ziegler Stefan > Sent: Monday, January 07, 2008 1:58 PM > To: itext-questions > Subject: [iText-questions] clipping/deleting data > > Hi

[iText-questions] BMP in PDFs

2008-01-07 Thread Antonios Papadakis-Pesaresi
Hello, I am trying to add & retrieve a bmp image in the last page of a pdf file using iText. My code, so far, is the following: private void cmd_addImageToPDF() throws Exception { PdfReader reader = new PdfReader(pdfFileName.getName()); PdfStamper stamp = new PdfStamper(reader, new FileOutputS

[iText-questions] Custom HashMap access inside a Page Events class.

2008-01-07 Thread Niladri Bhattacharyya
Hi All, I want to access a HashMap which is created in the servlet to be available in the Page Events class which puts some dynamic information in the Footer. Now I do not know how to get some custom data inside a page events class as the signatures of the class methods cannot be change

Re: [iText-questions] Custom HashMap access from Page Events class.

2008-01-07 Thread Bruno Lowagie
Niladri Bhattacharyya wrote: Hi All, I want to access a HashMap which is created in the servlet to be available in the Page Events class which puts some dynamic information in the Footer. Now I do not know how to get some custom data inside a page events class as the signatures of the

[iText-questions] Custom HashMap access from Page Events class.

2008-01-07 Thread Niladri Bhattacharyya
Hi All, I want to access a HashMap which is created in the servlet to be available in the Page Events class which puts some dynamic information in the Footer. Now I do not know how to get some custom data inside a page events class as the signatures of the class methods cannot be change

Re: [iText-questions] Label printing

2008-01-07 Thread Bruno Lowagie
Eric Chow wrote: How to generate Barcode label with iText? Read the book. There's also a wiki example: http://lowagie.com/itextwiki/doku.php/filmfestival:accreditation but that's far too complex for your simple requirements. The fact that you ask the question shows that you are asking the qu

[iText-questions] Label printing

2008-01-07 Thread Eric Chow
How to generate Barcode label with iText? For example ++ | short_description color | | ..code128 here., | |barcode value here | +

[iText-questions] Generate barcode label

2008-01-07 Thread Eric Chow
Hello, How can I generate a barcode label page in iText? - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___