Re: [iText-questions] Complilation problem source code iText2.0.0

2007-02-20 Thread Shoaib Gauhar
I get this error too. But i have resolved this problem. public OptionArgument(AbstractTool tool, String name, String description) { super(tool, name, description, ""); this.setClassname((new Entry(description)).getClass().getName()); } This solves the prob

[iText-questions] Complilation problem source code iText2.0.0

2007-02-20 Thread Tallat Hussain
I am trying to compile iText 2.0.0 source code. I am getting the following error "OptionArgument.java": Error #: 310 : cannot reference class com.lowagie.tools.arguments.OptionArgument.Entry before superclass constructor has been called at line 140, column 34 Following is the piece of code /**

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread Mark Storer
And that works in Reader 7? Huh. Looking at the "Manipulating existing PDF documents" example, "AddWatermarkPageNumbers" in the tutorial section, I see that you've neglected calls to under.beginText() and under.endText()... which is pretty basic and I'm a bit embarassed I didn't catch it earl

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread murthy gandikota
I don't know what "reader enabled" means. To guess, the form can be opened in Acrobat reader. In fact it is a (US) Federal application which is distributed all over the WWW. Basically, I am stuck with that form and FDF is not an option. The error I get in Acrobat 8 is: "An Error

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread Mark Storer
This sounds an awful lot like something that just came up. Is the form in question "Reader Enabled"? iText breaks 'enabled' forms, any change will, unless you know exactly how to update the docment-level rights. iText does not, Acrobat 8 does. Option 1: Remove the rights from the source for

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread murthy gandikota
I start with a PDF form. Here is how the code looks: String pdfApp="form.pdf"; String pdfFile="filledform.pdf"; PdfReader reader = new PdfReader(pdfApp); int n = reader.getNumberOfPages(); PdfStamper stamp = new PdfStamper(reader, ne

Re: [iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread Mark Storer
I'm afraid we need a LOT more information if we're going to help you. What did you start with, what are you trying to build, how? We have no crystal balls here. Help us help you. --Mark Storer Senior Software Engineer Cardiff.com #include typedef std::Disclaimer DisCard; -Ori

[iText-questions] Acrobat Reader 7 vs. Acrobar Reader 8

2007-02-20 Thread murthy gandikota
The PDF's generated open fine in Acrobat Reader Version 7 but not in Acrobat Reader Version 8. Does anyone have this problem? Murthy - Be a PS3 game guru. Get your game face on with the latest PS3 news and previews at Yahoo! Games.--

Re: [iText-questions] RTF - page numbering

2007-02-20 Thread Mark Hall
On 20.02.2007, at 15:44, GAMBELLI Raffaele wrote: > > I said the code I'm suing is the same of tutorial! You said the code was almost the same as in the tutorial. This might seem like nitpicking, but especially with headers and fields that sometimes makes the difference, which is why I wanted

Re: [iText-questions] FYI: if you want to make money out of your iTextexpertise

2007-02-20 Thread Mark Storer
Sounds good. I've signed up and will keep you posted. --Mark Storer Senior Software Engineer Cardiff.com #include typedef std::Disclaimer DisCard; > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Behalf Of Bruno > Lowagie (iText) > Sent: Tuesday,

Re: [iText-questions] An Error Exists on this Page; Acrobat may not display the page correctly

2007-02-20 Thread murthy gandikota
Hi Bruno Many thanks for your kind reply. How do you explain the fact that the PDF is shown correctly on some PC's? We have several PC's with Acrobat 8 installation and they show the PDF fine. Did anyone have a similar experience with Acrobat 8? Regards Murthy Bruno Lowagie <[EMAIL PROTEC

[iText-questions] Antwort: Pagebreak problem after changing from text to composite mode

2007-02-20 Thread Benjamin Rein
Hi, if you can't read my example copy it into your favourite text application and format it with a monospace font like courier. It would be nice if someone could answer. Is the problem not explained well enough or is no solution available? If something is wrong just tell me. Thank you in adva

Re: [iText-questions] RTF - page numbering

2007-02-20 Thread GAMBELLI Raffaele
On 20.02.2007, at 11:10, GAMBELLI Raffaele wrote: > have you ever had problems with an incorrect visualization of pages > numbers once the document was opened with Word or a rtf viewer? > > I guess it can be a Word's bug, your opinion? > > The code I use is practically the same as the tutorial

Re: [iText-questions] RTF - page numbering

2007-02-20 Thread Mark Hall
On 20.02.2007, at 11:10, GAMBELLI Raffaele wrote: > have you ever had problems with an incorrect visualization of pages > numbers once the document was opened with Word or a rtf viewer? > > I guess it can be a Word's bug, your opinion? > > The code I use is practically the same as the tutorial.

Re: [iText-questions] RTF - page numbering

2007-02-20 Thread Raghu
Read sample examples given at There are examples for page numbers for RTF. http://itextdocs.lowagie.com/tutorial/rtf/extensions/hf/index.html It is working for me with these examples -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of GAMBELLI Raffaele Sent

Re: [iText-questions] Tiff orientation

2007-02-20 Thread Paulo Soares
- Original Message - From: "beppecosta" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 20, 2007 10:32 AM Subject: Re: [iText-questions] Tiff orientation > > Paulo, > > thanks; when importing TIFF image the "getInitialRotation()" tells me what > I > need. > > when importing a multipag

[iText-questions] RTF - page numbering

2007-02-20 Thread GAMBELLI Raffaele
Hi all, have you ever had problems with an incorrect visualization of pages numbers once the document was opened with Word or a rtf viewer? I guess it can be a Word's bug, your opinion? The code I use is practically the same as the tutorial. Best regards. Raffaele ---

Re: [iText-questions] Tiff orientation

2007-02-20 Thread beppecosta
Paulo, thanks; when importing TIFF image the "getInitialRotation()" tells me what I need. when importing a multipage JBIG2 image however the "getInitialRotation()" always returns 0.0 probably because it get lost during the compression, but I can save this value before calling the compressor an

Re: [iText-questions] Unwanted blank pages

2007-02-20 Thread Bruno Lowagie
Tony Hughes wrote: > o How in general do you DELETE a page in the document ? As explained in chapter 2. For the moment there's no way to delete a page if you're creating a document with PdfWriter. > o Is there code that says "If this page is blank, delete it". > Supposedly by default, iT

Re: [iText-questions] How do I join ?

2007-02-20 Thread Bruno Lowagie
Tony Hughes wrote: > Dear iText, > > I just submitted a question about iText. The email > reply said I was not a member. I assume you are talking about itext-questions@lists.sourceforge.net > But I registed at Manning as antoniohughes. That's a different forum. Manning.com is different fro

Re: [iText-questions] PdfPCells and Images--sizing and spacing

2007-02-20 Thread Bruno Lowagie
Charles W.Stanton wrote: > If I add an image (barcode in this case) directly to the inner cells, it > always > expands to the full width of the cell (growing proportionally such that it's > now > too tall). There are difference PdfPCell constructors. Look them up in the API and use the one that

Re: [iText-questions] An Error Exists on this Page; Acrobat may not display the page correctly

2007-02-20 Thread Bruno Lowagie
murthy gandikota wrote: > "An Error Exists on this Page; Acrobat may not display the page correctly" > Basically, what I see is the form before it was overlaid with text > generated with Lowagie software. On other PC's using Acrobat 8 we don't > see the error. The filled form is shown as it shou

[iText-questions] FYI: if you want to make money out of your iText expertise

2007-02-20 Thread Bruno Lowagie (iText)
Hello all, last weekend I received a mail from OpenLogic. I quote: Stormy Peters wrote: > We are inviting committers from leading open source projects to join the > OpenLogic Expert Community. OpenLogic offers enterprises 24x7, one > source of support for over 160 open source projects. We pr