PDF Sharing on a Android Client
I wanna create an application where when i open a PDF to a particular page and a zoom position. i should be able to share the same to another client.
It will be Android Tablet with a Webserver to support it.
Can someo开发者_如何学Cne guide me how to do it ?
If your application is going to load, process and display PDF documents, then you need a PDF viewer component suitable for Android OS. If you are only going to generate the PDFs on a server for use in Android devices, then you need a PDF-creation component on the server. This component should create a go-to PDF action at the document-level for the document open event (see PDF reference). A PDF-compliant viewer application, such as Adobe Reader, will execute this action when the document is opened by an end-user. That is, instead of the usual first page, the viewer application will automatically navigate to the page specified in the go-to PDF action. When adding the go-to action, you can specify the page number, rectangular area on the page, and the page magnification level.
精彩评论