user609511
user609511

Reputation: 4261

PHP AJAX PDF Reader just like book

Does anyone know how to build something like the functionality shown here: like sliding a book

I want to load PDF content, so that users can read all of my PDFs like a slideshow.

I'd like to use PHP, MySQL and JQuery, but I haven't found any JQuery plugin that functions like a PDF reader.

Upvotes: 0

Views: 1267

Answers (1)

Joey
Joey

Reputation: 687

Don't think there is a solution in AJAX, jQuery or Javascript yet. You have to build it yourself or...

what you can do is convert each page in PHP to JPG (there are a lot of classes to do that), after that you can then load the pages in a jQuery Slideshow or load the images external from a flash file.

Upvotes: 1

Related Questions