souvik
souvik

Reputation: 11

How to select word in a pdf file

In my app I am using the library https://github.com/barteksc/AndroidPdfViewer for reading a pdf file. Now I want to select words from the pdf file, how will I do it?

Upvotes: 1

Views: 415

Answers (1)

Max
Max

Reputation: 155

What the library you're using actually does is to basically convert an PDF file into a Bitmap image so that it can be viewed and zoomed etc. Therefore you cannot select text or words from the PDF file, or the resulting Bitmap image for that matter.

Upvotes: 2

Related Questions