Reputation: 11
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
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