Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Convert pdf to images

Tags:

android

i m receiving a pdf file from the server & want to display it as images..

So is der a way to convert this pdf file to Images?

UPDATE:

Can i do this thru MediaStore? If not, how can i do this thru PDFBox API???

Thanks, Nital Shah

like image 259
Nital Avatar asked Nov 04 '22 22:11

Nital


1 Answers

Your probably better off converting the pdf files on the server so that the mobile device doesn't have to do the intensive processing.

So the mobile device will to a http request for the image and just fetch the image (whereas the server processes the pdf files on demand or in bulk)

The conversion on the server can be done with ImageMagick libraries.

like image 186
Marty Avatar answered Nov 11 '22 09:11

Marty