tags:

views:

53

answers:

1

I need to build a service that converts individual pages from a pdf document to png images and servers them to a javascript reader running in browser. The challenge is that this should happen super fast so that a user flipping through the pages of a document in the web browser would see the next page with minimum delay. I have tried using a few pdf to image libraries but they are slow for dynamic conversion. Do you know what's the fastest way to do this?

A: 

Why should it be done in realtime? You can do it beforehand since pdf's are usually quite static

Henri
Well, the online reader would have a zoom function. So I need to generate images with different zoom levels. However it makes sense to cache the images for later access.
shane