What is a good PDF to HTML converter for Ruby on Rails?

15,767

Solution 1

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.

Solution 2

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

https://github.com/coolwanglu/pdf2htmlEX

Solution 3

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.

Solution 4

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.

Share:
15,767

Related videos on Youtube

marcgg
Author by

marcgg

Trying to build useful software. Find me on twitter or give my blog a read!

Updated on April 19, 2022

Comments

  • marcgg
    marcgg about 2 years

    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)

  • bta
    bta over 14 years
    Regarding the PDF documents that didn't convert to HTML well, I would recommend testing a few with Adobe's online conversion service. If they still come out sub-par, I wouldn't spend too much time researching alternatives since I would imagine that Adobe's own converters would be the best out there.
  • marcgg
    marcgg over 14 years
    That's an interesting solution, I'll look into that
  • vitaly.v.ch
    vitaly.v.ch over 14 years
    poppler can render pdf to something other. one of the target can be acceptable for You.
  • wesgarrison
    wesgarrison over 14 years
    This is how I did it when I needed to convert PDFs very nicely to other formats.
  • jshkol
    jshkol almost 10 years
    In my limited testing it produces shockingly good results.
  • BMW
    BMW almost 10 years
    This is gr8 tool, but how to merge with rails?
  • amit_saxena
    amit_saxena almost 10 years
    @BMW a good place to start is the project wiki: github.com/coolwanglu/pdf2htmlEX/wiki/Quick-Start . I think you can easily plug it into a rails app using the system call.
  • lacostenycoder
    lacostenycoder about 7 years
    This solution isn't very good if you need to actually parse text from the PDF file.