vote up 6 vote down star

What good libraries are there, in any common language, for converting PDF to HTML?

flag

0% accept rate
Attempted to turn it into a programming question. And I see lots of questions going from HTML to PDF but not the reverse so probably worthwhile keeping it? – Cruachan Oct 28 at 18:01
This is completely subjective. Please reword your question as to not be subjective and give a little info about what you are trying to do. – Russ Oct 28 at 18:05
1  
I've de-subjectified the question and reworded it to what I think the OP is asking. It's a pity SO doesn't have a feature to remove close votes. – Ether Oct 28 at 18:11
Good work, Ether. BTW, unknown - if you're just looking for a program (not a library), please see: stackoverflow.com/questions/1531699/… (which... should probably be migrated to SU now) – Shog9 Oct 28 at 19:05

7 Answers

vote up 0 vote down

In Perl, you can use the SWISH::Filter plugin SWISH::Filters::Pdf2HTML. (It requires the xpdf package.)

For the reverse (HTML to PDF), see this question.

link|flag
vote up 0 vote down

if you're looking for a way to convert PDF to HTML once or twice then I recommend Adobe Online Conversion

If it's an API you're after then http://www.pdfonline.com/ has an SDK that should suit your needs.

If it's a library you're after then please let us know which server-side language you prefer.

link|flag
Thanks Russ! I'm using Adobe Online so far. I tried the website and the results are difficult to gauge. But thanks for the help! – unknown (google) Oct 28 at 18:47
vote up 0 vote down

If you are working on a Windows box, I think Amyuni has a library for this as well. Their PDF Document Convertor is accessible as a DLL, can be used widely among the languages supported by Visual Studio, and can convert to RTF, TML, EXCEL, JPEG, and TIFF.

link|flag
vote up 0 vote down

Given the vagueness of the original question I'm going to go ahead and give a solution that will work with any language that can execute command-line apps. Although it can be a little bit tricky to get setup, OpenOffice can be run in headless mode on a server and, with the help of jodconverter, can convert any file format to any other file format (well, any format conversions that openoffice can handle, that is).

Here are a couple of links that help with the setup:

link|flag
vote up 2 vote down

http://www.lowagie.com/iText/ Opensource library for both Java and C#

link|flag
This is probably your best bet. Parse the PDF using the library and generate HTML from the data. – TJB Oct 30 at 5:44
vote up -1 vote down

Our service will take the URL of the webpage that you are wanting to convert, and return the PDF. It's not a library, but takes only 5 minutes to get working, so might be of value? URL is http://fourpdf.com/

Regards, Jake.

link|flag
Wrong direction. – reinierpost Nov 2 at 12:54
Without more information about the domain of what he's trying to achieve, I don't see why this is "Wrong direction". It's a simple solution that can be used programmatically. – Jake Liddell Nov 2 at 13:13
vote up 0 vote down

PDFBox at apache has an html extraction capability. http://pdfbox.apache.org/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.