How to make PDF viewer in PHP
I want to open PDF file with PHP. Don't want to use Flash. Like google doc viewer. I just want 开发者_如何学Pythonto open PDF file. Can I do with PHP ?
PHP cannot natively open and display a PDF file to the browser. In most cases you want to just send the file to the browser and allow the Adobe Reader to open and display the file. However, if you are looking to pull data out of the PDF itself, then the PDF function built-into PHP may be of some help.
http://php.net/manual/en/book.pdf.php
You can't BUT You can make one with PHP
making a previews of each page like google reader
this links may help you How do I convert a PDF document to a preview image in PHP?
精彩评论