[iText-questions] Itext for Word Document from JSP Web application

2007-02-05 Thread Raghuveer
I have a requirment to generate a word document consisting of dynamic tabular data,images from database from java application. There should be dynamic HEADER and FOOTER With different images from database. Is this possiable Itext to genearte a word document for above requirment ?. Experts please

Re: [iText-questions] Form filling problem at the pdf file edited using Acrobat

2007-02-05 Thread SeungHyun Park
Thanks for your reply. I tried with bonus examples and they help me a little. I found that the font information of acrofield can be reset or edited. I rewrote my code as this and it works; '= Private Sub FillData(ByVal SourceName As String, ByVal xfdfName As S

[iText-questions] Active x control support in generated pdf document

2007-02-05 Thread Praveen BALAGOWNI
Hi, I am generating a pdf dynamically from a servlet using iText.It also embeds signature generated by electronic signature pad using Acitve X component.When embedding the signature in pdf file,it is in text(string) format generated by active x control.   As the signature can be interpre

[iText-questions] Active x control support in generated pdf document

2007-02-05 Thread Praveen BALAGOWNI
Hi, I am generating a pdf dynamically from a servlet using iText.It also embeds signature generated by electronic signature pad using Acitve X component.When embedding the signature in pdf file,it is in text(string) format generated by active x control.   As the signature can be interprete

Re: [iText-questions] loading images

2007-02-05 Thread Bill Ensley
Also don't forget Image.getInstance(fileObject.toURL()); If you have a file, just pass it as a URL. -Bill Ensley www.bearprinting.com > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Arif Abbasi > Sent: Monday, February 05, 2007 1:58 PM > To: '

Re: [iText-questions] loading images

2007-02-05 Thread Arif Abbasi
Hi Thanks for replying back. Sorry if I am making it confusing, I thought I was very explicit. We have all the images in our webapps (I was UI for this in my last e-mails). The webapps are deployed as independent war files. Our iText PDF report code(the middle tier) is in jar files (deployed sepa

Re: [iText-questions] Setting Page Margins

2007-02-05 Thread mister bean
It's very hard to tell what you're trying to do. The page size of 462 x *666* inches is unsupported in PDF. The current maximum is, unless it's been updated, 200 in x 200 in. Are you sure you don't mean points rather than inches? Presuming you mean points, I still don't understand what you're tr

Re: [iText-questions] Setting Page Margins

2007-02-05 Thread Matthias Becker
Hi   you have to multiply it with 72. 1 Inch == 72 Points, which is the unit being used.   Therefore, x=33264 and y=47952. > Hi all,    I have a requirement where in I need to have a page of dimension 462 * 666 inches. I'm not able to set the page size correctly. I tried using         

[iText-questions] Display a PDF after creation to the user

2007-02-05 Thread Matthias Becker
Hello id like to know if it is possible to display a PDF createt with iText after its creation to the user within the application that created it? I only found PDFBox but to use this also is rather annyoing and so far i have only been able to display the output in B/W :( Do you know

[iText-questions] Setting Page Margins

2007-02-05 Thread magesh rathnam
Hi all, I have a requirement where in I need to have a page of dimension 462 * 666 inches. I'm not able to set the page size correctly. I tried using Rectangle r = new Rectangle(462,0,0,666); Document document = new Document(r); But this does not create the document in the s

[iText-questions] Setting Page Margins

2007-02-05 Thread magesh rathnam
Hi all, I have a requirement where in I need to have a page of dimension 462 * 666 inches. I'm not able to set the page size correctly. I tried using Rectangle r = new Rectangle(462,0,0,666); Document document = new Document(r); -- Regards, Magi ---

[iText-questions] Page Labels

2007-02-05 Thread Dean Krueger
Hi. I have a multi page PDF and would like to get the page numbers of each page. In the PDF spec this is called Page Label. I was wondering if iText supports the getting of these page numbers. I am looking in the book on page 402 it shows that I can change them on documents I create. But doesn't s

[iText-questions] Please ignore

2007-02-05 Thread Bruno Lowagie
Again I haven't received any mail from the list today. I answered some mails I found on GMANE through Usenet. But the last post dates from 6 hours ago. This is just a test to see if my mails passes through, or if there's a problem with the mailing list (again).

Re: [iText-questions] I do not understand.

2007-02-05 Thread Bruno Lowagie (iText)
gegemartinelli wrote: > Hello, > > I have a table on a A4 paper format. Each cell has fixed Column and row > sizes. This works fine. > > The table is suposed to fill an entire page. When my PDF is created, I > display with Acrobat and it seems pretty good. > I don't see any margin. So my table

[iText-questions] I do not understand.

2007-02-05 Thread gegemartinelli
Hello, I have a table on a A4 paper format. Each cell has fixed Column and row sizes. This works fine. The table is suposed to fill an entire page. When my PDF is created, I display with Acrobat and it seems pretty good. I don't see any margin. So my table fills entirely my page. Now when

Re: [iText-questions] remove images

2007-02-05 Thread Bruno Lowagie
amudha wrote: > Hi, > > I need to remove the entire images in the PDF file and save it. How can I > do this using itext.please help me. This describes how to replace images: http://itext.ugent.be/library/question.php?id=66 Completely removing images will prove to be very difficult, because t

Re: [iText-questions] Multi-page table

2007-02-05 Thread Bruno Lowagie
Daniel Brownell wrote: > I put my table in a column with rectangle wider than the page width, Why do you do this??? That goes completely against the advice I gave you. Was my advice that bad??? > But it just chops off the columns that don't fit. This was to be expected given the fact that you cr

[iText-questions] remove images

2007-02-05 Thread amudha
Hi, I need to remove the entire images in the PDF file and save it. How can I do this using itext.please help me. Thanks & Regards, Amudha - Using Tomcat but need to do more? Need to support web services, security? G

Re: [iText-questions] Multi-page table

2007-02-05 Thread Daniel Brownell
Hi Bruno, Thanks for the reply, i'm still having some trouble. I put my table in a column with rectangle wider than the page width, But it just chops off the columns that don't fit. My code re-draws the table on the next page. But i'd like it to draw only the part that was chopped off on page 1

Re: [iText-questions] Detecting a blank area in pdf

2007-02-05 Thread Bruno Lowagie
p_repetti wrote: > is there any example about looking for a blank area in a given pdf ? No, not automatically. > I'd like to add a marker string to an already exisiting pdf, > but without covering previous content. Do it manually (on sight) using Adobe Acrobat. I don't know of any tool that wil

Re: [iText-questions] clarification needed...

2007-02-05 Thread Bruno Lowagie
Janaki hariharan wrote: > > HI, > > > > I'm using iTextSharp to generate tables in pdf. I'm having a table > > with three columns. Is it possible to set different width to each column. Yes, it is possible to set relative withs (for instance {1, 2, 1} if you want to be the middle colum

[iText-questions] Detecting a blank area in pdf

2007-02-05 Thread p_repetti
Hello is there any example about looking for a blank area in a given pdf ? I'd like to add a marker string to an already exisiting pdf, but without covering previous content. Thanks -- View this message in context: http://www.nabble.com/Detecting-a-blank-area-in-pdf-tf3173584.html#a8804111 Sen

Re: [iText-questions] Adding a picture to a document

2007-02-05 Thread Alexis Pigeon
Hi, On 05/02/07, ntobeko ngcobo <[EMAIL PROTECTED]> wrote: > Hi > > How do i add a picture to a document using itext tags I don't know what you mean by "itext tags", but if what you want to do is to create a pdf file with an image in it, here is the tutorial section, just 2 clicks away from the m

Re: [iText-questions] Adding a picture to a document

2007-02-05 Thread Bruno Lowagie (iText)
ntobeko ngcobo wrote: > Hi > > How do i add a picture to a document using itext tags Are you using iText XML tags? Then you need something like But I wouldn't advise you to use iText XML. It's no longer supported. Have a look at something like UJAC, or write your own handler as is done in the bo

[iText-questions] clarification needed...

2007-02-05 Thread Janaki hariharan
HI, I'm using iTextSharp to generate tables in pdf. I'm having a table with three columns. Is it possible to set different width to each column. expecting help, Janaki. .H - Sucker-punch spam with award-winning protection. Try the free

Re: [iText-questions] Adding a picture to a document

2007-02-05 Thread ntobeko ngcobo
Hi How do i add a picture to a document using itext tags - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM

Re: [iText-questions] Form filling problem at the pdf file edited using Acrobat

2007-02-05 Thread Bruno Lowagie (iText)
SeungHyun Park wrote: > If you could take a few minutes to answer my questions, I would really > appreciate it. > Thank you in advance for your help. There is an extra bonus example that can be found here: http://itext.ugent.be/itext-in-action/chapter.php?chapter=16#bonus This example is in fact