Re: [iText-questions] Html to Pdf

2009-05-04 Thread deep4u
Hello, I need to convert html to pdf, but html having Tabloe of contents after converting pdf the Table of contents are not working.How to resolve this. Thanks, 1T3XT info wrote: > > deep4u wrote: >> Hello, >>Bookmarks are not same as the Table of contents. >> I need TableOfCon

Re: [iText-questions] Html to Pdf (1T3XT info)

2009-05-04 Thread Ragia Ibrahim
Hi, Reham ...mohammed please if you have further refrences about PDBox how it works how does it read the pdf send it Ragia Date: Mon, 4 May 2009 15:40:47 -0400 From: rru...@gmu.edu To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Html to Pdf (1T3XT info) Hi Mehmood

Re: [iText-questions] Footer problem -- date string on the left and page number on the right

2009-05-04 Thread 1T3XT info
Jess8 wrote: > Hi, I try to put the footer on each page of pdf which has date string on the > left side and page x of Y on the right side. However, I got the footer like > the following ==> > > 05/04/20092 Page 1 of 2 > > Can someone tell me what might

Re: [iText-questions] Html to Pdf (1T3XT info)

2009-05-04 Thread Raheem Rufai
Hi Mehmood, It is not possible in iText. You might want to take a look at PDFBox, instead. Admittedly as it3xt suggest, it is a horribly difficult task. Even Adobe Acrobat doesn't do a perfect job of it, so don't expect a perfect job from PDFBox either. However, depending on your purpose, you might

[iText-questions] Footer problem -- date string on the left and page number on the right

2009-05-04 Thread Jess8
Hi, I try to put the footer on each page of pdf which has date string on the left side and page x of Y on the right side. However, I got the footer like the following ==> 05/04/20092 Page 1 of 2 Can someone tell me what might cause it? Thanks in advan

Re: [iText-questions] Html to Pdf (1T3XT info)

2009-05-04 Thread 1T3XT info
Mehmood wrote: > Flying saucer seems to create a pdf or html from xml and css . But what > I need is to convert a PDF to HTML format. Is this is possible in iText? No, you won't find any tool that can convert PDF to HTML because it's a stupid question: Read http://doughnut-design.livejournal.com/

Re: [iText-questions] Html to Pdf (1T3XT info)

2009-05-04 Thread Mehmood
Flying saucer seems to create a pdf or html from xml and css . But what I need is to convert a PDF to HTML format. Is this is possible in iText? -- -- Register Now & Save for Velocity, the Web Performance & Operations

Re: [iText-questions] PageEvents in VB - Headers and Footers.

2009-05-04 Thread Paulo Soares
Have look at the attached file. Paulo > -Original Message- > From: oggieone [mailto:doug.mcga...@state.mn.us] > Sent: Monday, May 04, 2009 6:34 PM > To: itext-questions@lists.sourceforge.net > Subject: Re: [iText-questions] PageEvents in VB - Headers and Footers. > > > It may be trivi

Re: [iText-questions] PageEvents in VB - Headers and Footers.

2009-05-04 Thread oggieone
It may be trivial for someone who knows what they are doing in VB. I am stuck at a client site and have been asked to code some VB even though I am java guy... I have tried the following within my reporting Module Private WithEvents myEvent As PdfPageEvent ' No errors from this line Then impleme

Re: [iText-questions] PageEvents in VB - Headers and Footers.

2009-05-04 Thread Paulo Soares
Doesn't it work with page events? See http://itextdocs.lowagie.com/tutorial/directcontent/pageevents/index.php. It should be trivial to convert to C# or VB. Paulo > -Original Message- > From: oggieone [mailto:doug.mcga...@state.mn.us] > Sent: Monday, May 04, 2009 3:46 PM > To: itext-q

Re: [iText-questions] I text pdf to html

2009-05-04 Thread 1T3XT info
Mehmood wrote: > > I really appreciate your effort for making such a wonderful product . I > have using it for a year for printing the contents by generating pdf > from database using iText. > > Now I have posed with a different task where I have to generate a html > format from the existing

Re: [iText-questions] Html to Pdf

2009-05-04 Thread 1T3XT info
deep4u wrote: > Hello, >Bookmarks are not same as the Table of contents. > I need TableOfContents. suppose one html file having Tableofcontents after > generating pdf also those will be work. I am uploading my html file using > that to convert pdf and also those TOC will be work. Yes. --

[iText-questions] PageEvents in VB - Headers and Footers.

2009-05-04 Thread oggieone
What is the best way to add headers and footers with iText in VB? I tried this without any success (from a sample on the web). Dim footer As HeaderFooter = new HeaderFooter(new Phrase("This is page: "), true) footer.setBorder( 1 ) document.Footer = footer Nothing shows up. I even set all the m

Re: [iText-questions] Problem whit text in a Visible Signature

2009-05-04 Thread RobertQ
thanks a lot Paulo!! Paulo Soares-3 wrote: > > The initial coordinates are at 0,0 - the bottom left corner. Have a > n2.moveText() after beginText() and before showText(). > > Paulo > >> -Original Message- >> From: RobertQ [mailto:rquino...@estudiantes.uci.cu] >> Sent: Monday, May 04

Re: [iText-questions] How to change an existing button's text?

2009-05-04 Thread Paulo Soares
See AcroFields.replacePushbuttonField(). Paulo > -Original Message- > From: Cheryl [mailto:mcdia...@cablespeed.com] > Sent: Monday, May 04, 2009 2:40 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] How to change an existing button's text? > > Question: How ca

Re: [iText-questions] Problem whit text in a Visible Signature

2009-05-04 Thread Paulo Soares
The initial coordinates are at 0,0 - the bottom left corner. Have a n2.moveText() after beginText() and before showText(). Paulo > -Original Message- > From: RobertQ [mailto:rquino...@estudiantes.uci.cu] > Sent: Monday, May 04, 2009 2:59 PM > To: itext-questions@lists.sourceforge.net >

[iText-questions] How to change an existing button's text?

2009-05-04 Thread Cheryl
Question: How can I access a pushbutton's text property so that I can change it from "cancel" to "close"? Thanks, Cheryl -- Register Now & Save for Velocity, the Web Performance & Operations Conference from O'Reilly M

Re: [iText-questions] Acrofields - identifying required fields using itext

2009-05-04 Thread Cheryl
1T3XT info 1t3xt.info> writes: > > Cheryl wrote: > > I need to access the required attribute of a field using itext/java. Can > > someone tell me know to do this? > > Get the field dictionary, and look for the "Ff" key (PdfName.FF; stands > for "Field flags"). The value corresponding with thi

[iText-questions] Problem whit text in a Visible Signature

2009-05-04 Thread RobertQ
Hi, I am using the code below to create a visible signature, but I have a problem, the text always appears at the bottom of the n2 layer and the next text lines appears out of limits of the n2 layer. I fix that using n2.setLeading(-10) but it is bad way to solve the problem. Please, help me. gree

[iText-questions] populate an XFA PDF with dynamic rows

2009-05-04 Thread DHANU BUDIREDDI
Hello, populate an XFA PDF with dynamic rows using iText. Here i need to run the query, depending on the query result i need to add the rows on XFA PDF. Is this possible to manipulate XFA PDF with dynamic rows? looking for great suggesions. Thanks, --Dhanu... On Mon, May 4, 2009 at

Re: [iText-questions] iText-questions Digest, Vol 36, Issue 4

2009-05-04 Thread DHANU BUDIREDDI
Hello, populate an XFA PDF with dynamic rows using iText. Here i need to run the query, depending on the query result i need to add the rows on XFA PDF. Is this possible to manipulate XFA PDF with dynamic rows? looking for great suggesions. Thanks, --Dhanu On Mon, May 4, 2009 at

[iText-questions] Imported pages are too slow (Kruzic, Alex x55204)

2009-05-04 Thread Klas Lindbäck
You can try caching the imported page in memory. If the number of templates is small the memory overhead will be managable. Is the template large? In that case you can also try to re-create the template. When I create PDF:s using a simple template combined with data from the database I have crea

[iText-questions] I text pdf to html

2009-05-04 Thread Mehmood
I really appreciate your effort for making such a wonderful product . I have using it for a year for printing the contents by generating pdf from database using iText. Now I have posed with a different task where I have to generate a html format from the existing pdf documents. I don't want exact

[iText-questions] Html to Pdf

2009-05-04 Thread deep4u
Hello, Bookmarks are not same as the Table of contents. I need TableOfContents. suppose one html file having Tableofcontents after generating pdf also those will be work. I am uploading my html file using that to convert pdf and also those TOC will be work. Thanks, Leonard Rosenthol-3 wr