Android: convert pdf to images

im receives the pdf file from the server and wants to display it as images.

So, a way to convert this PDF file to Images?

UPDATE:

Can I do this through MediaStore ? If not, how can I do this via the PDFBox API?

Thanks Nital Shah

+6
source share
1 answer

You are probably better off converting PDF files to a server so that your mobile device does not need intensive processing.

Thus, the mobile device will process the HTTP request for the image and simply retrieve the image (whereas the server processes the PDF files on demand or in bulk)

Conversion on the server can be performed using ImageMagick libraries.

+2
source

Source: https://habr.com/ru/post/887255/


All Articles