Re: [iText-questions] Editing PDF Content in Browser

2005-10-19 Thread kapil dhakad
Hi Leonard,   First thanks for your reply.   Summary of my requirements   Before that please note that I want to implement it in Web Application   1. We have to generate N number of documents, so Administrator should have facility to create new templates which will contain static data + dynamic dat

Re: [iText-questions] Watermark Question

2005-10-19 Thread Leonard Rosenthol
At 07:52 PM 10/19/2005, Smith, Adrian wrote: I have a need to remove the watermarks from a set of PDF files so that I can do more accurate comparisons on the content. Is there a way to remove the watermark? I am not looking to violate any ownership issues, these are draft files and they have

Re: [iText-questions] EAC 128 UCC

2005-10-19 Thread Paulo Soares
shipBarCode.setCode("(8100)030111"); - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Wednesday, October 19, 2005 10:45 PM Subject: [iText-questions] EAC 128 UCC I am trying to generate a UCC/EAN 128 Coupon Code. The code is attached below. The vendor sent me the attached

Re: [iText-questions] Watermark Question

2005-10-19 Thread Paulo Soares
iText can't parse content. You'll have to look elsewhere. - Original Message - From: "Smith, Adrian" <[EMAIL PROTECTED]> To: Sent: Thursday, October 20, 2005 12:52 AM Subject: [iText-questions] Watermark Question > Hi, > I have a need to remove the watermarks from a set of PDF files so

[iText-questions] Watermark Question

2005-10-19 Thread Smith, Adrian
Title: Watermark Question Hi, I have a need to remove the watermarks from a set of PDF files so that I can do more accurate comparisons on the content.  Is there a way to remove the watermark?  I am not looking to violate any ownership issues, these are draft files and they have these great bi

Re: [iText-questions] Turkish Charset problem

2005-10-19 Thread Paulo Soares
Only the second one won't work. It all depends what you have in path. You can start with Arial.ttf. If it still doesn't work maybe what you have in the text string is not Turkish. - Original Message - From: "Philippe Couas" <[EMAIL PROTECTED]> To: Sent: Wednesday, October 19, 2005 8:24 P

Re: [iText-questions] check box not printing

2005-10-19 Thread Paulo Soares
formField.setFlags(PdfFormField.FLAGS_PRINT); - Original Message - From: "P Govind" <[EMAIL PROTECTED]> To: Sent: Wednesday, October 19, 2005 6:23 PM Subject: [iText-questions] check box not printing I need to display a large number of servlet request parameters in a pdf format. So I d

[iText-questions] Turkish Charset problem

2005-10-19 Thread Philippe Couas
Title: Message Hi,   I try to create Turiish PDF, my problem is not resoved with       bf = BaseFont.createFont(path,BaseFont.IDENTITY_H, true);   Or     bf = BaseFont.createFont(path,BaseFont.WINANSI, true);  Or    bf = BaseFont.createFont(path,"Cp1254", true);    

[iText-questions] check box not printing

2005-10-19 Thread P Govind
I need to display a large number of servlet request parameters in a pdf format. So I decided to create a helper class which will have factory methods to create various pdf objects and can be used to create a pdf template, which can be filled in with the user entered values using the pdfstamper clas

RE: [iText-questions] Writing To Existing PDFs

2005-10-19 Thread Phil Queripel
Excellent - works a treat :o) Thank you both for your efforts, greatly appreciated... PhilQ. "Paulo Soares" <[EMAIL PROTECTED]> wrote on 10/19/2005 11:21:29 AM: > Have a look at the PdfStamper javadocs. Just as a pointer: > > PdfReader r = new PdfReader(...); > PdfStamper stp = new PdfStamper

RE: [iText-questions] Writing To Existing PDFs

2005-10-19 Thread Paulo Soares
Have a look at the PdfStamper javadocs. Just as a pointer: PdfReader r = new PdfReader(...); PdfStamper stp = new PdfStamper(reader, ...); PdfContentByte cb = stp.getOverContent(1); // place your text, images, etc. in cb stp.close(); > -Original Message- > From: Phil Queripel [mailto:[EMA

RE: [iText-questions] Writing To Existing PDFs

2005-10-19 Thread Phil Queripel
>Are you using PdfStamper.getOverContent()? Nope, I'll investigate that now - if you have a few example lines handy, that would be nice :o) Phil. "Paulo Soares" <[EMAIL PROTECTED]> wrote on 10/19/2005 11:13:47 AM: > Are you using PdfStamper.getOverContent()? > > > -Original Message-

RE: [iText-questions] Writing To Existing PDFs

2005-10-19 Thread Paulo Soares
Are you using PdfStamper.getOverContent()? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Phil Queripel > Sent: Wednesday, October 19, 2005 4:05 PM > To: Leonard Rosenthol > Cc: itext-questions@lists.sourceforge.net; Phil Queripel > Subject: Re

[iText-questions] Question on PDF Header/Footer [csharp]

2005-10-19 Thread Roland Müller
Hi, i have a footer and a header in my pdf document. I know how i can change the font, but the text is NOT in the vertical middle (in the footer). There is more space to the bottom border than to the top border. Is this a generel problem? I use buy: HeaderFooter footer = new HeaderFooter(new

Re: [iText-questions] Writing To Existing PDFs

2005-10-19 Thread Leonard Rosenthol
At 10:37 AM 10/19/2005, Phil Queripel wrote: > Meaning you can't get teh coordinates correct? Nope, I can set the coordinates fine. OK, then if you are getting coordinates correct - then the text will appear will you tell it. >Or the text > shows up UNDER the areas, but never on to

Re: [iText-questions] Writing To Existing PDFs

2005-10-19 Thread Phil Queripel
Hi Leonard, > So, is the PDF document an actual AcroForm with fields on it? No, just an ordinary PDF, I've attached an example. > Meaning you can't get teh coordinates correct? Nope, I can set the coordinates fine. >Or the text > shows up UNDER the areas, but never on top?  What do you mea

RE: [iText-questions] ColumnText.addText() vs ColumnText.addElement()

2005-10-19 Thread Paulo Soares
addText() just adds text one after the other and the indentations and spacing is done in ColumnText. addElement() uses the object properties to align, space, etc. It also supports Paragraph, PdfPTable, Image, etc. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]

RE: [iText-questions] Characters shift up and down in edtiable multi-line textbox

2005-10-19 Thread Paulo Soares
Each Acrobat version has a different text layout. Use AcroFields.setExtraMargin() to adjust it. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Alan Zhang > Sent: Tuesday, October 18, 2005 11:58 PM > To: itext-questions@lists.sourceforge.net > S

Re: [iText-questions] Run java file using PdfAction

2005-10-19 Thread Leonard Rosenthol
At 08:31 AM 10/19/2005, Archana wrote: I want to create a PdfAction for runnina a java application. I want to make some part of my PDF file clickable and when clicked, it should execute a java program. is there any way? pls help You can do this - but understand that the user will get a

[iText-questions] Run java file using PdfAction

2005-10-19 Thread Archana
Hi I want to create a PdfAction for runnina a java application. I want to make some part of my PDF file clickable and when clicked, it should execute a java program. is there any way? pls help Thanks in advance!! --- This SF.Net email is

Re: [iText-questions] Writing To Existing PDFs

2005-10-19 Thread Leonard Rosenthol
At 07:15 AM 10/19/2005, Phil Queripel wrote: Hi, I have existing pdf forms which are traditionally completed by hand. I don't need AcroForm functionality I simply need to add text to an exiting form to be sent out to customers for signing. OK. So, is the PDF document an actual

Re: [iText-questions] question

2005-10-19 Thread Leonard Rosenthol
At 04:07 AM 10/19/2005, [EMAIL PROTECTED] wrote: Hi. I'm using iText with JFreeChart to draw charts in pdf documents. OK. I'd like to be able to popup a tooltip when the mouse is over certain regions in the chart. Is this possible in a pdf document? Yes it's possible using

Re: [iText-questions] Editing PDF Content in Browser

2005-10-19 Thread Leonard Rosenthol
At 05:23 AM 10/19/2005, kapil dhakad wrote: I want to generate PDF on the fly, (In web application) OK. While generating PDF in web application I want to give facility to user to edit pdf using web browser. What does "Edit PDF" mean? What would the user see? The P

Re: [iText-questions] Editing PDF Content in Browser

2005-10-19 Thread Bruno Lowagie
Steve Simpson (AVR IT Dept) wrote: Could you not just create a simple JSP/HTML page and then generate the PDF file after the form has been completed? That's what we're doing as we wanted to do a similar sort of thing to you As I understood it, the intention was to send PDF to a browser and hav

RE: [iText-questions] Editing PDF Content in Browser

2005-10-19 Thread Steve Simpson (AVR IT Dept)
Could you not just create a simple JSP/HTML page and then generate the PDF file after the form has been completed? That's what we're doing as we wanted to do a similar sort of thing to you - Steve Simpson Arriva Vehicle Rental Tel : 0191

Re: [iText-questions] Several types of fonts

2005-10-19 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: I need to know the literals that use sereval type of fonts in the method createFont of the class BaseFont. I only know "helvetica"... If I wanted to use another type of font, could I use it? If I can, How can I do? http://itextdocs.lowagie.com/tutorial/fonts/ br, Bruno

Re: [iText-questions] question

2005-10-19 Thread Bruno Lowagie
[EMAIL PROTECTED] wrote: Hi. I'm using iText with JFreeChart to draw charts in pdf documents. That's possible I'd like to be able to popup a tooltip when the mouse is over certain regions in the chart. Is this possible in a pdf document? Tooltips in PDF are possible. Combining both JFreeC

Re: [iText-questions] Text wrapping table possible?

2005-10-19 Thread Bruno Lowagie
Roland Müller wrote: Hi, i have a dynamic table where i render cells with images. I need some possibility to write text right from this table; the text ist long and should be able to go under the table if it reaches the bottom border of the table. I know there are possibilities to set the

Re: [iText-questions] Editing PDF Content in Browser

2005-10-19 Thread Bruno Lowagie
kapil dhakad wrote: it seems that there is not any such tool which supports it. Not even Adobe has a product that allows PDF editing in a browser. You are asking something that is impossible. br, Bruno --- This SF.Net email is sponsored by:

[iText-questions] Writing To Existing PDFs

2005-10-19 Thread Phil Queripel
(If anybody can help me with the following it will really save my bacon today :o)) Hi, I have existing pdf forms which are traditionally completed by hand. I don't need AcroForm functionality I simply need to add text to an exiting form to be sent out to customers for signing. I'm having great su

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

2005-10-19 Thread Paulo Soares
Changes in itext-paulo-155 (2005-10-19) - added support for tagged PDFs. The high level objects don't generate tags yet, but it's possible to create a fully legal tagged PDF using PdfContentByte. - Image.skip() didn't check for EOF. - Image.toUrl() didn't escape the filename ch

RE: [iText-questions] pdf signature, linux problem

2005-10-19 Thread Paulo Soares
Ask the mailing list, don't ask me, I don't use bouncycastle. The bouncycastle mailing list at http://www.bouncycastle.org/mailing_lists.html may also be of help. > -Original Message- > From: Miguel Domínguez Matos [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 19, 2005 12:05 PM

RE: [iText-questions] pdf signature, linux problem

2005-10-19 Thread Miguel Domínguez Matos
I'm trying to use bouncycastle with itext but really don't know how :S As i said i'm new using java, can somebody help me? Thanks, and congratulations for doing this class Maybe your linux jdk doesn't have a decent crypto provider. Use the bouncycastle crypto provider. > -Original Message

RE: [iText-questions] pdf signature, linux problem

2005-10-19 Thread Paulo Soares
Maybe your linux jdk doesn't have a decent crypto provider. Use the bouncycastle crypto provider. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Miguel Domínguez Matos > Sent: Wednesday, October 19, 2005 10:52 AM > To: itext-questions@lists.so

[iText-questions] pdf signature, linux problem

2005-10-19 Thread Miguel Domínguez Matos
Hi, i'm new using java, itext and this mailing list. I have tested an app based on paulo examples (and precompiled .jar) for sign pdf documents in windows and all was fine. But i need use this app under linux and i have this problem: [EMAIL PROTECTED] firmas]$ java -classpath .:itext-paulo-15

[iText-questions] Editing PDF Content in Browser

2005-10-19 Thread kapil dhakad
hi,   I want to generate PDF on the fly, (In web application)While generating PDF in web application I want to give facility to user toedit pdf using web browser. (May be mozilla, I.E.). (User may user any text-editing compoenent which will run in browser, after WYSWYG effect the PDF will save on S

[iText-questions] Text wrapping table possible?

2005-10-19 Thread Roland Müller
Hi, i have a dynamic table where i render cells with images. I need some possibility to write text right from this table; the text ist long and should be able to go under the table if it reaches the bottom border of the table. I know there are possibilities to set the alignment of image and

[iText-questions] question

2005-10-19 Thread sudhir
Hi. I'm using iText with JFreeChart to draw charts in pdf documents. I'd like to be able to popup a tooltip when the mouse is over certain regions in the chart. Is this possible in a pdf document? Sudhir --- This SF.Net email is sponsored by: P

[iText-questions] Several types of fonts

2005-10-19 Thread Ext . Ilitia2
I need to know the literals that use sereval type of fonts in the method createFont of the class BaseFont. I only know "helvetica"... If I wanted to use another type of font, could I use it? If I can, How can I do? Anybody help me? --- This S