[iText-questions] Table height in xml

2004-03-15 Thread Mark Goking
Hi, I added an attrbute height under table in my tagmap xml file. But it doesn't seem to work Even if I set it at by pixel or by percentage, the height of the table wont extend to the bottom of the page. :) Anyone know a workaround? mark

Re: [iText-questions] pdf image + text

2004-03-15 Thread Leonard Rosenthol
At 05:54 PM 3/15/2004, Ramón M. Arias wrote: Can iText be used to generate pdf image + text? Yes. However, you will have to figure out where the text goes in relation to the image - there is no OCR support... Leonard --

[iText-questions] pdf image + text

2004-03-15 Thread Ramón M. Arias
Can iText be used to generate pdf image + text? Ramón M. Arias V. Vice-President Isthmian-Technologies Email: [EMAIL PROTECTED] Tel: +507 226-8118 Cell: +507 617-5171 Fax: +507 226-8126 BEGIN:VCARD VERSION:2.1 N:Arias;Ramon;M FN:Ramon M Arias ORG:Isthmian Technologies Inc. TITLE:Vice-President TEL

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread Bill Ensley
touche, I should know better! Bill Ensley Bear Printing -Original Message- From: Leonard Rosenthol [mailto:[EMAIL PROTECTED] Sent: Monday, March 15, 2004 9:39 AM To: Bill Ensley Subject: RE: [iText-questions] PDF/X-3 compliant attributes At 12:19 PM 3/15/2004, Bill Ensley wrote: > >foo

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread Bill Ensley
The iText Team has chosen not to implement support for PDF/X. They feel that WEB/SCREEN is where their userbase is so they are working on those issues. Bill Ensley Bear Printing -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of [EMAIL PROTECTED] Sent: Monday

[iText-questions] Problem with printing PDF

2004-03-15 Thread poon bob
Hi, I have created a pdf using IText. The pdf looks to fit the whole page when it is viewed using a viewer. The page however truncated when I print it out. It seems Adobe have a .25 inch of margin for border. Anything outside of that border is actually cut off. In order for me to print out the who

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread Leonard Rosenthol
At 09:37 AM 3/15/2004, Paulo Soares wrote: I can put the object copy in PdfWriter. Would be pretty useful for a number of things - including copying bookmarks, links, etc I'll do some changes in PdfCopy to support the concatenation of PDFX/3 docs and still get a PDFX/3 doc at the en

[iText-questions] Trouble reading and writing to PDF

2004-03-15 Thread Matthew Ryan
Hi all, Can anyone tell me what is wrong with this? PdfReader reader = new PdfReader("template.pdf"); Document document = new Document(reader.getPageSize(1)); PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread Paulo Soares
> -Original Message- > From: Leonard Rosenthol [mailto:[EMAIL PROTECTED] > Sent: Monday, March 15, 2004 1:42 PM > To: Paulo Soares; [EMAIL PROTECTED]; > [EMAIL PROTECTED] > Subject: RE: [iText-questions] PDF/X-3 compliant attributes > > At 05:52 AM 3/15/2004, Paulo Soares wrote: > >Pd

RE: [iText-questions] FW: File attachment using iText: How to read/download the embedde d file on the PDF document

2004-03-15 Thread Leonard Rosenthol
At 06:07 AM 3/15/2004, Paulo Soares wrote: In the next release you'll have a class to process attachments. Keep in mind that there are TWO types of file attachments in PDF now... FileAttachment annots (the old way) and Named files (the new way). The former are not compati

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread Leonard Rosenthol
At 05:52 AM 3/15/2004, Paulo Soares wrote: PdfDictionary catalog = new PdfDictionary(); PdfDictionary outp = new PdfDictionary(); outp.put(PdfName.S, new PdfName("GTS_PDFX")); outp.put(new PdfName("OutputConditionIdentifier"), new PdfString("CGATS TR 001")); outp.put(new PdfName("RegistryName"), ne

RE: [iText-questions] Content of the nested table does not fit the page

2004-03-15 Thread Paulo Soares
There's no workaround. PdfPTable is not a complex layout engine and breaking cells is really complex if well done. You'll probably need to use several PdfPTable precisely positioned side by side or something like that.   Best Regards, Paulo Soares From: Priya Menon [mailto:[EMAIL

RE: [iText-questions] Content of the nested table does not fit the page

2004-03-15 Thread Paulo Soares
That's the normal behavior for PdfPTable as described in the javadoc. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Priya > Sent: Monday, March 15, 2004 10:17 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] C

RE: [iText-questions] FW: File attachment using iText: How to read/download the embedde d file on the PDF document

2004-03-15 Thread Paulo Soares
In the next release you'll have a class to process attachments. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Vedder, Maria > Sent: Monday, March 15, 2004 10:01 AM > To: '[EMAIL PROTECTED]' > Subject: [iText-questio

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread Paulo Soares
The trapped key is also missing. In the next release I'll include an example of the creation of a PDF/X3 compliant document. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Paulo Soares > Sent: Monday, March 15, 2004 1

[iText-questions] FW: File attachment using iText: How to read/download the embedde d file on the PDF document

2004-03-15 Thread Vedder, Maria
Hello Paulo, thanks a lot for your information. Could you manage to create an example for the download of file attachments on PDF-Files ? Would be a great help. Best regards, Maria From: Paulo Soares consiste.pt> Subject: RE: File attachment using iText: How to read/download the embedded fi le

[iText-questions] Content of the nested table does not fit the page

2004-03-15 Thread Priya
Hi, I am facing a problem wherein when the contents in the nested table doesn't fit the page it just disappears.I have tried to use fitsPage and tried adding newPage but that doesn't work as expected either. The code is as follows //create main table mainTable.setWidthPercentage(100.0f); table

RE: [iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread Paulo Soares
It's possible to do it, see below. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of [EMAIL PROTECTED] > Sent: Monday, March 15, 2004 8:25 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] PDF/X-3 compliant attributes > > Hello, > >

Re: [iText-questions] iText

2004-03-15 Thread Bruno
Quoting John Gunnarsson <[EMAIL PROTECTED]>: > 1. Does any of you see any major design flaw with the model i've > described above? That depends on the content of the application. I know of a (closed source) project that serializes JAVA objects using java.beans.XMLEncoder These XMLs are read with

[iText-questions] PDF/X-3 compliant attributes

2004-03-15 Thread opgeklopter
Hello, I've got a PDF/X-3 verified document. With a PdfReader-object this document is imported in a new one which is created with by a PdfWriter-object. For explanation here the code: PdfReader reader =3D new PdfReader("c:/temp/pdfx3.pdf"); Document document =3D new Document(); PdfWrit

[iText-questions] (no subject)

2004-03-15 Thread lee boon tatt
i try to parse the html page to the pdf format but when i compile the java example Chap0707.java.   then this error come in:>>   H:\Tomcat4.1\Testing\Chap0707.java:26: cannot resolve symbolsymbol  : class HtmlParser location: package htmlimport com.lowagie.text.html.HtmlParser; 

[iText-questions] iText

2004-03-15 Thread John Gunnarsson
Hi, I've just evoluted iText for a couple of days now, and have some questions which I really would appreciate getting some answers to. First let me explain what problem i would like to solve with iText. We have a java server based on webservices with a object to database mapping framework call

[iText-questions] Setup iText on Mandrake Linux Problem ?

2004-03-15 Thread Lui Yiu-Leung
Hi, I am a newbie on Linux. I am interesting your iText. Would you give me a setup procedure for iText installation ? Thanks ! I placed iText*.jar into $JAVA_HOME/jre/lib . This is my shell script === javac -classpath iText.jar:iTextXML.jar $1.java java -classpath iText.jar