Re: [iText-questions] HTML to RTF

2009-11-11 Thread 1T3XT info
Oliver Hernàndez Valls wrote: > I knew xhtmlrenderer but can't find something analogous to > org.xhtmlrenderer.pdf.ITextRenderer but for rtf. > I'll post my question there. > > Anyway, thank you all for the feed back We're abandoning RTF. It will move to an incubator project soon. This mailing l

Re: [iText-questions] HTML to RTF

2009-11-10 Thread Alexis Pigeon
Hi Oliver, 2009/11/10 Oliver Hernàndez Valls > Hi all, > I'm new with iText. > Last week I send a question about the capabilities of iText to generate rtf > from an html page: > "I know that iText has rtf generation capabilities but can't find no > example about how to generate a rtf document f

Re: [iText-questions] Html to Rtf

2007-04-05 Thread sk clr
Hi For the html with table, I removed the caption, it worked fine. But the javascript content from the html file is visible in the rtf. What should i do about that? And the image - I tried with both bmp as well as jpg. I get the same EmptyStackException Thanks sk clr <[

[iText-questions] Html to Rtf

2007-04-05 Thread sk clr
Hi I use iText to convert html input file to rtf output file. My code is pretty simple Document document = new Document(); RtfWriter2.getInstance(document, new FileOutputStream("Test.rtf")); HtmlParser hp = new HtmlParser(); hp.go(document, "Test.html"); When I use

Re: [iText-questions] HTML to RTF/ PDF to RTF

2007-03-07 Thread Todd McGrath
Thanks, any suggestions for something that might do the HTML to RTF conversion? Quoting mister bean <[EMAIL PROTECTED]>: > > iText does not do either of the things you need. You can generate PDFs and > RTFs using iText, but it does not do either conversion you describe. > > ---Mr. Bean > > >

Re: [iText-questions] HTML to RTF/ PDF to RTF

2007-03-07 Thread mister bean
iText does not do either of the things you need. You can generate PDFs and RTFs using iText, but it does not do either conversion you describe. ---Mr. Bean Todd McGrath-3 wrote: > > Hi, > > I was under the impression that I could use iText to convert HTML to RTF. > Is > that true? Do you h

[iText-questions] HTML to RTF/ PDF to RTF

2007-03-07 Thread Todd McGrath
Hi, I was under the impression that I could use iText to convert HTML to RTF. Is that true? Do you have any recomendations? I also need a way to convert PDF to RTF. Thanks! Todd - Take Surveys. Earn Cash. Influence the Fu

Re: [iText-questions] Html to Rtf (also concerns iTextSharp)

2006-02-19 Thread Mark Hall
On Monday 13 February 2006 15:56, Ben Hill wrote: > Quick question. We are trying to get iTextSharp to convert html to rtf > document. I found a few resources on the web that had me use the > HtmlParser method on the document. This works moderately well - I don't > seem to have any control over

[iText-questions] Html to Rtf

2006-02-13 Thread Ben Hill
Greetings, iTextSharp team. First off - really splendid project. We are getting a lot out of it, and I really appreciate your work. Quick question. We are trying to get iTextSharp to convert html to rtf document. I found a few resources on the web that had me use the HtmlParser method on the

Re: [iText-questions] html to rtf

2004-11-30 Thread Bruno
Quoting metin bekil <[EMAIL PROTECTED]>: > > Hi, > > I am using Itext to convert html documents into rtf documents. I am trying to > give html documents from file system...But I can not do it.I am tring to give > (c:\\a.html) as an input and try to get c:\\a.rtf as an output. Is it > possible b

[iText-questions] html to rtf

2004-11-30 Thread metin bekil
Hi, I am using Itext to convert html documents into rtf documents. I am trying to give html documents from file system...But I can not do it.I am tring to give (c:\\a.html) as an input and try to get c:\\a.rtf  as an output. Is it possible by using Itext?  If so, could you show me some code scri