Question

I'm trying to convert programatically PDF to HTML. So far I've been using pdftohtml but our users are not happy with the results.

Here's what I need :

  • I'm using Ruby on Rails, but any tool working on Unix would work as I can call it from the command line. But of course a nice gem or plugin would be perfect.

  • I'd prefer it to be open source

  • It needs to be able handle images

  • It would be nice if there was an option to discard images if needed

  • It needs to be stable

  • It needs to return html with a layout close to the original pdf (I've tried pdftohtml and the result is not that good in a lot of cases)

Was it helpful?

Solution

Here are a couple more alternatives to pdftohtml/xpdf:

  • Adobe has a free online PDF to HTML or text conversion service. It might take a minute or two to get the document back, but I would suspect that this option would give you the best results.
  • There is a pdf-reader ruby gem that will give you access to the internals of the PDF file. This would involve some development/extension on your part, but you could use this to parse the PDF file and generate nice-looking HTML. This might be easier than it sounds if you know what type of files your users are converting ahead of times (such as if they are working with standardized forms).
  • You may have more options if you use ghostscript (gem found here) to convert the PDF to another format first. The gem can generate images (png, jpg, etc) from a PDF file but you might have the best luck converting it into a PostScript file since there seem to be a zillion "PostScript-to-[insert format here]" converters.

OTHER TIPS

For PDF to HTML conversion, pdf2htmlEX seems like a pretty good tool (looking at all the examples/samples):

https://github.com/coolwanglu/pdf2htmlEX

If all else fails, you could turn each page into an image (using image magick or similar) and display the images, a la http://books.google.com or http://safari.oreilly.com. It'd be a bandwidth hog, but you would get fidelity to the original.

I spent a while working on a research project that involved taking PDFs as input. What you're asking for is just a really difficult task, and no software will do it perfectly. Whereas HTML has some structure, like <p>, PDF is purely presentational. An HTML document will say, "this is a paragraph. This is an image." and the presentation is interpreted from that. A PDF document will essentially say: "this character should be rendered at position X,Y. this next chracter will be rendered at position..." etc. So even constructing paragraphs out of that can be hard.

I was working in Java, so I don't think the specific program I used will be of much use to you. Also, I recall that some PDF generators splice an image into smaller images and display them next to each other--that was a huge pain.

Is there any possible way that you can be working with a different format, or lower your expectations? You could do the image thing that Wayne suggests, but then it's not really HTML (and it's not accessible--is that a concern for you?). That might just have to be something you live with.

Try use poppler or xpdf. But it's need some magic and binding.

you can try http://www.pdf-to-html-word.com/pdf-to-html which works really good. I paid for it after checking its functionality. You have a free ride to test it. Or else use Acrobat Pro and Save as HTML with CSS. That works too. But it's a pain in the a** to do with a bunch of files.

Can try this. I've taken a first cut at wrapping Ruby around the pdftohtml utility. Gem available here: http://gemcutter.org/gems/pdftohtmlr

After using pdftohtml for some time and being dissatisfied with the display results of the html version, I'm considering using either google apps document API or the scribd API (my favorite right now)

http://www.scribd.com/developers/api

In the end, I'll probably use pdftohtml to simply extract the text content of the pdf file and the scribd api to display the original file on the user page

I've just released a ruby gem to convert documents with open office headless (via poyconverter or jodconverter). it also integrates other few librairies (pdftools and netpbm) to extract text dans images from pdf files.

You can find it here https://github.com/itkin/proselytism.git

Feel free to add your own converters and report me some issues

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top