[iText-questions] FDF Merge Field Text is chopped

2004-11-17 Thread dsmall2
Title: Message I used the FDF_merge example to merge a PDF and its corresponding FDF file, worked great however the text is chopped at the bottom i.e the p g j etc. It is as if the Field Appearance feature border is set to medium. The corresponding files flatten without problem in Acrobat 5.

[iText-questions] Comment summary generation

2004-11-17 Thread Nguyen, Daniel
Title: Comment summary generation Hi, The facts: I have a PDF document I have FDF file(s) that relate to the document I want to implement a feature similar to the 'Create PDF of comments summary'  in Acrobat 6. The questions: Q1: Should I start using the PdfcopyMerge class to implement

[iText-questions] Where is public PdfChunk() ???

2004-11-17 Thread vgalan
Hi! I tried to replace my previous iText.1.0 lib with iText.1.1 lib in my project and I found that the public constructor of PdfChunk class is not longer visible. What's the workaround for a code like this: BidiLine bidi = new BidiLine(); bidi.addChunk(new PdfChunk(new Chunk(strText, font), nu

Re: [iText-questions] Re: Tray Selection Indicators

2004-11-17 Thread Leonard Rosenthol
At 10:47 AM 11/17/2004, Gaurav wrote: Leonard what information should i ask for from the network people. I know that these are Lexmark printers. Apart from this what else would be helpful. Postscript or PCL? What level of Postscript? What Job Ticket formats does it support? Leonar

[iText-questions] Signing and PKCS#7 Blocks

2004-11-17 Thread Mark Nelson
Hello- I'm currently using the instructions at the following to sign PDFs with an external hash in Windows Certificate mode: http://itextpdf.sourceforge.net/howtosign.html It is all working great, except for one thing. We have a server application that verifies the signatures, but it expects th

[iText-questions] Issue with Image into PDF

2004-11-17 Thread Sudheendra Singh
Hi All,   I am working on a module where we insert images into a PDF. It was working fine but with one particular image (width-732 and height-1714) is going into an infinite loop. I am using Table and Cell classes to achieve this. Is there any restriction on the dimensions of the image that can be

[iText-questions] IOException when trying to access font

2004-11-17 Thread Tomas Hansson
I have a servlet that generates PDF reports based on some data in a database. I am using the Arial font (c:/windows/fonts/arial.ttf). While stress-testing this servlet (>10 simultaneous connections), I am occasionally getting a java.io.IOException: Bad file descriptor. To alleviate this problem,

[iText-questions] Help on graphics/text placement

2004-11-17 Thread Jim Owen
Hi, I've run into a problem where I'm getting an extra page in a generated PDF file that contains images that I expected to be placed on the prior page. In other words, I output a bunch of text, then place graphics on the page with a PdfContentByte. I'm ending up with the text on one page

[iText-questions] Bug in PdfLine

2004-11-17 Thread Steve Appling
I believe there is a bug in PdfLine.getAscender (added by me unfortunately). The problem is the lines: if (ck.isImage()) ascender = Math.max(ascender, ck.getImageOffsetY()); This was copied from the getDescender code without thinking it through. I think it should be:

[iText-questions] Re: PdfPCell question

2004-11-17 Thread M Lynn
Try using the setWidths() method, for example:       int headerwidths[] = {8, 12, 9, 11, 10, 7, 9, 9, 9, 7, 9}; // percentage     table.setWidths(headerwidths);   Hope this help!   jml Do you Yahoo!? Meet the all-new My Yahoo! – Try it today!

[iText-questions] RE: How do you create multi-columns header using Table/PdfPTable?

2004-11-17 Thread M Lynn
Thanks!  I got both header and footer in multi-column table working.by using the header-watermak.java as example.   However, I still don't understand how to fit the template object into the PdfPCell so I can display "Page x of y" yet.  I get around it by generating the PDF report twice so I can cap

[iText-questions] Re: Silent Printing

2004-11-17 Thread Gaurav
Hi, We are using Lexmark T630 printers. It has three trays & I want to always print from Tray 3. I got the reference manual for the Printer, please see the link below. I am not sure myself what I should be looking for; if you could help I would really appreciate this. http://www.lexmark.com/publi

RE: [SPAM] - RE: [iText-questions] HtmlWorker - tag - Email f ound in subject

2004-11-17 Thread Danny Molloy
Does this mean that the "endDocument" method in HtmlWorker needs to be adjusted to use Columntext depending on the element type being added? My test class doesn't explicitly add anything to the document. The following is what my main looks like in my test class Maybe I'm calling the parser incorrec

RE: [iText-questions] Merging annotations in FDF to original PDF

2004-11-17 Thread Paulo Soares
That's not a problem, there are 9 compression levels for flate. > -Original Message- > From: Nguyen, Daniel [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 17, 2004 4:03 PM > To: Paulo Soares; [EMAIL PROTECTED] > Subject: RE: [iText-questions] Merging annotations in FDF to > origi

RE: [iText-questions] Re: Tray Selection Indicators

2004-11-17 Thread Kochhar, Gaurav
Hi, We are using Lexmark T630 printers. It has three trays & I want to always print from Tray 3. I got the reference manual for the Printer, please see the link below. I am not sure myself what I should be looking for; if you could help I would really appreciate this. http://www.lexmark.com/publi

RE: [iText-questions] Merging annotations in FDF to original PDF

2004-11-17 Thread Nguyen, Daniel
Paulo, Solved ! But still 1 question remaining (see below) FYI: The problem was appearing when an annotation had associated stream. 1- The annotation is stored into an FDF file The PRStream was instantiated with offset / length, but no content (bytes member remained null) 2- I create a pdfs

RE: [iText-questions] Resize PdfImportedPage

2004-11-17 Thread Paulo Soares
PdfContentByte cb = writer.getDirectContent();PdfReader reader = new PdfReader("some_pdf.pdf");PdfTemplate tp = writer.getImportedPage(reader, 1);Image img = Image.getInstance(tp);img.setAbsolutePosition(100, 100);img.scalePercent(20);img.setRotationDegrees(33);cb.addImage(im2); From:

[iText-questions] Re: Tray Selection Indicators

2004-11-17 Thread Gaurav
Leonard what information should i ask for from the network people. I know that these are Lexmark printers. Apart from this what else would be helpful. --- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidime

[iText-questions] Re: Silent Printing

2004-11-17 Thread Gaurav
Guys, Thanks for your suggestions. I was able to make it work by adding the following serverside code. document.open() PdfAction jAction = PdfAction.javaScript("this.print(false);\r", writer); writer.addJavaScript(jAction); Follow up Question(Requirement for our project): I want to make Printer

[iText-questions] PdfPCell question

2004-11-17 Thread Marco Rossi
Hi, I have to set the size of a cell in a PdfPTable, (i.e. a row with two cell, one 80% and the othe 20%), but i can't find the right method. Thk. --- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensi

Re: [iText-questions] PDF to PCL

2004-11-17 Thread Matt Benson
--- Rémi Guilbert <[EMAIL PROTECTED]> wrote: > Hi, do you know what can I do to convert pdf file to > pcl file (on Unix) ? I > need to use duplex functionnality. Never forget ghostScript for tasks just such as this! -Matt > Thank's !! > Rémi __

[iText-questions] How do you create a 3-column page header?

2004-11-17 Thread [EMAIL PROTECTED]
Help! I browsed the archive and found many reference about Table in header so one can generate a multi-column header as well as in the iText tutorial that hints at that as well. From the tutorial, I learned to generate a simple text header and footter. But I want to generate a 3-column header

[iText-questions] PDF to PCL

2004-11-17 Thread Rémi Guilbert
Hi, do you know what can I do to convert pdf file to pcl file (on Unix) ? I need to use duplex functionnality. Thank's !! Rémi --- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensional database that co

[iText-questions] Resize PdfImportedPage

2004-11-17 Thread josem_berges
Hi, I'm trying to add a pdf document to my pdf document and I wanted to resize the original pages to write them into a delimited area of the 2nd document (my pdf document). I'm using setHeight and setWidth methods of PdfImportedPage (inherited from PdfContentByte) to resize the pages but I've not

RE: [iText-questions] How do you create multi-columns header using Table/PdfPTable?

2004-11-17 Thread Paulo Soares
See the example headers_and_watermarks.java at http://itextpdf.sf.net. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of M LynnSent: Wednesday, November 17, 2004 3:20 PMTo: [EMAIL PROTECTED]Subject: [iText-questions] How do you create multi-columns header us

Re: [iText-questions] itext-paulo-142 -> iText 1.1

2004-11-17 Thread Bruno
Quoting Matt Benson <[EMAIL PROTECTED]>: > Bruno: > I'm still lurking. :) Wanted to help out: > s/responsability/responsibility . Thanks! You will probably find lots of errors like that. Why is it the French and the English always had to change 1 letter for the same word: responsible - respons

[iText-questions] How do you create multi-columns header using Table/PdfPTable?

2004-11-17 Thread M Lynn
Help!   I want to create a 3-column page header but I don't know how.  I can generate a simple page header based on the iText tutorial.  From the same tutorial as well as from this archive, using a Table or PdfPTable to create the header were hinted at muliple references.  I cannot find any detail

Re: [iText-questions] New release itext-paulo-141

2004-11-17 Thread Bruno
sam smith wrote: > Does anyone know where I can find out more information about the > PdfStamper bug that was fixed in version 141? I didn't see it in the > bug database. Oops, the bug database... I hardly ever check that SourceForge feature, nor the support request page. I thought people did

RE: [iText-questions] Linearized information lost after using iText

2004-11-17 Thread Paulo Soares
iText doesn't support linearization. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of why lost > Sent: Wednesday, November 17, 2004 2:17 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Linearized information lost after > using iText > >

RE: [iText-questions] Setting the default border for a table

2004-11-17 Thread Paulo Soares
It's possible with PdfPTable and PdfPTableEvent. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of JNB CI / Derick Potgieter > Sent: Wednesday, November 17, 2004 1:02 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Setting the default borde

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

2004-11-17 Thread Paulo Soares
It was a bug introduced in 140. To know more do a diff and see what was changed. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of sam smithSent: Wednesday, November 17, 2004 2:23 PMTo: [EMAIL PROTECTED]Subject: Re: [iText-questions] New release itext-paulo-

[iText-questions] Setting the default border for a table

2004-11-17 Thread JNB CI / Derick Potgieter
Hi all, I know how to remove the border, but how do you set another border? I want to set an double border around my table, will this be possible Thanks Derick --- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A

Re: [iText-questions] New release itext-paulo-141

2004-11-17 Thread sam smith
Does anyone know where I can find out more information about the PdfStamper bug that was fixed in version 141?  I didn't see it in the bug database.   Thanks, Sam - fixed a bug in PdfStamper with form flattening and fields added Paulo Soares <[EMAIL PROTECTED]> wrote: Changes in itext-paulo-141 (20

[iText-questions] Linearized information lost after using iText

2004-11-17 Thread why lost
After I used some tools in iText, such as com.lowagie.tools.split_pdf, encrypt etc, the result from my original linearized pdf file become no-linearized. Who could tell me how to keep the output file also linearized? I will appreciate your reply! ___

RE: [iText-questions] space between text and bar

2004-11-17 Thread Paulo Soares
PdfChunk > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Rémi Guilbert > Sent: Wednesday, November 17, 2004 12:16 PM > To: [EMAIL PROTECTED] > Subject: Re: [iText-questions] space between text and bar > > Hi, where I can find the default value

Re: [iText-questions] itext-paulo-142 -> iText 1.1

2004-11-17 Thread Leonard Rosenthol
At 03:54 AM 11/17/2004, Bruno wrote: I received some mails about problems with the site. I tested with Firefox 0.9.2, Mozilla 1.5b and MSIE 6.0 on Window XP. Only MSIE doesn't show the left column as I want it (i.e. fixed, even when you scroll). Yeah, I was using MSIE... Leonard, the text

Re: [iText-questions] Re: Silent Printing

2004-11-17 Thread Leonard Rosenthol
At 06:10 PM 11/16/2004, Gaurav wrote: Thanks for the response Carsten. I am not sure I understood what you meant. I want to basically print out the PDF document (which is diaplayed in the jsp page) by clicking on the Print button in the PDF Header. My question is very basic how will i capture the o

Re: [iText-questions] space between text and bar

2004-11-17 Thread Rémi Guilbert
Hi, where I can find the default value of underline spacing (which class)? Thank's !! Rémi - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Rémi Guilbert" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, November 13, 2004 1:56 PM Subject: Re: [iText-questions] sp

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

2004-11-17 Thread Frank_Zhou
I will be out of the office starting 11/16/2004 and will not return until 11/18/2004. I will respond to your message when I return. Please contact Gong Cai at 5815 if you need immediate assistance. --- This SF.Net email is sponsored by:

RE: [iText-questions] JAI jar file

2004-11-17 Thread Paulo Soares
http://java.sun.com/products/java-media/jai/ > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Ravichandran > Sent: Wednesday, November 17, 2004 9:55 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] JAI jar file > > > > I want to use "ja

[iText-questions] JAI jar file

2004-11-17 Thread Ravichandran
I want to use "javax.media.jai.JAI" file into my class.I want to download corresponding Jar files.Plz help me and where to download.I think that jar file name is jai_codec.jar Cheers, Ravi. --- This SF.Net email is sponsored by: InterSyst

RE: [iText-questions] HtmlWorker - tag

2004-11-17 Thread Paulo Soares
HTMLWorker is to be used with ColumnText. It uses auto-leading that the plain document.add() doesn't support. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Danny MolloySent: Wednesday, November 17, 2004 1:17 AMTo: '[EMAIL PROTECTED]'Subject: [iText-question

RE: [iText-questions] Merging annotations in FDF to original PDF

2004-11-17 Thread Paulo Soares
Title: RE: [iText-questions] Merging annotations in FDF to original PDF I had a look at all that and it's not trivial to add the annotations, particulary if there's appearances with resources. I'll see if next week I have the time to implement it. From: [EMAIL PROTECTED] [mailto

RE: [iText-questions] what different between pdfimportpage,pdfcopy,...

2004-11-17 Thread Paulo Soares
PdfWriter creates new documents, PdfCopy joins already created documents. PdfWriter can also import pages from external documents. In either case no redution is ever made but PdfCopy will keep the annotations. If you want to combine 2 pages in a single page you'll have to use PdfWriter. > -Ori

[iText-questions] Re: iText designer

2004-11-17 Thread Bruno
Marco Rossi wrote: >Hi guys, >is there any designer tool for iText to help the document layout? > >Thanks in advance, >Marco > You have sent your mail to the mailinglist admin instead of the mailinglist. There are some higher level tools that allow you to make a design for your PDF, but instead of

[iText-questions] what different between pdfimportpage,pdfcopy,...

2004-11-17 Thread color_prepress
Is that any different for that? I want to get the content from particular pdf, then put it in new pdf.(all content must exactly same as source pdf, no reduce quality, no missing/truncate data from source. So that my final pdf is same with source, so I need to use pdfimportpage or pdfcopy,.. exa

Re: [iText-questions] itext-paulo-142 -> iText 1.1

2004-11-17 Thread Bruno
Quoting Leonard Rosenthol <[EMAIL PROTECTED]>: > At 01:58 PM 11/16/2004, Bruno wrote: > >Leonard, on the same page (under license agreement), > >I wrote something on support contracts. > >Is the text OK for you? > > I don't see that when I view the page :(. What am I missing? I receive

RE: [iText-questions] Merging annotations in FDF to original PDF

2004-11-17 Thread Nguyen, Daniel
Title: RE: [iText-questions] Merging annotations in FDF to original PDF Paulo, I'm afraid I don't understand: ... > Q2: How should I handle annotations that refer to other using reference in a > circular way (ie: Popup -> Parent, and Parent -> Popup) ? > Not a problem but depends exactly o

[iText-questions] Re: Silent Printing

2004-11-17 Thread Gaurav
Thanks for the response Carsten. I am not sure I understood what you meant. I want to basically print out the PDF document (which is diaplayed in the jsp page) by clicking on the Print button in the PDF Header. My question is very basic how will i capture the onClick event of the PDF document &