up vote 1 down vote favorite
share [g+] share [fb]
  • conversion from multiple non-graphical document formats to and from HTML (e.g. doc<->HTML, pdf<->html, odt<->html, etc.)
  • command line or API (Java API is preferable)
  • cross-platform
  • commercial or open source

Are there any well known solutions that meet/exceed these requirements?

link|improve this question
Are you sure you need pdf -> html(or any other format). I don't think there is any library available for that. For pdf, it would be one way, as far as I know. – Adeel Ansari Dec 23 '08 at 2:19
In fact, it's possible with some limitations. Take a look at this: google.com/search?q=pdf2html – Michael Dec 23 '08 at 8:26
feedback

3 Answers

OpenOffice has a rich API that supports conversion between the various supported formats. Check out this question. It recommends using JODConverter.

link|improve this answer
feedback

With DocBook you can export to various output formats, but reverting is always hard. For pdf you can try iText

link|improve this answer
feedback

I (having written an all in one Tex/LaTeX -> HTML and ASCII text and RTF convertor), would say this would be quite an undertaking.

The problem with this, is these various 'document' formats are intended for rather different purposes. And while there are indeed such conversion tools between some of these formats, there is often a conceptual disparity in the structure, meaning and implementation of 'document' and it is very often is necessary to trade off on features supported by one format to hack together an acceptable output in another. For example, PDF is very strong in presentation, precise positioning and support for fonts, where as HTML is more concerned about structure with practically no considuration for these things (without CSS).

I am curious how do you envision such an API being used, when usually someone simply wants a conversion program?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown