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