Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PDF search on the iPhone

After two days trying to read annotations from a PDF using Quartz, I've managed to do it and posted my code.

Now I'd like to do the same for another frequently asked question: searching PDF documents with Quartz. Same situation as before, this question has been asked many times with almost no practical answers. So I need some pointers first, as I still haven't implemented this myself.

What I tried:

I tried using CGPDFScannerScan handling the TJ and Tj operators - returns the right text on some PDF, whereas on other documents it returns mostly random letters. Maybe it's related to text encoding? Someone pointed out that text blocks (marked by BT/ET operators) should be handled instead, but I still haven't managed to do so. Anyone managed to extract text from any PDF?

After that, searching should be easy by storing all the text in a NSMutableString and using rangeOfString (if there's a better way please let me know).

But then how to highlight the result? I know there are a few operators to find the glyph sizes, so I could calculate the resulting rect based on those values, but I've been reading the spec for hours... it's a bloated mess and I'm going insane. Anyone with a practical explanation?

Update

User Naveen Thunga found PDFKitten, "a framework for extracting data from PDFs in iOS". I just tried the demo and it seems to work as advertised. I will test it with more PDFs and will post the results soon. As a side note, the code seems very good to me -- if you are interested in how this stuff works it's pretty awesome.

like image 766
ySgPjx Avatar asked Nov 04 '10 13:11

ySgPjx


People also ask

Can I search a PDF on my iPhone?

Launch your PDF reader on your iPhone. Open the PDF you want to search. Look toward the upper right on your screen and locate the magnifying glass. Tap the magnifying glass and type in the text you want to search.

How do you Ctrl F on iPhone PDF?

If you want to find a specific word or phrase in a document on your iPhone, the easiest way to do it will be in the Adobe Acrobat Reader. From there, you can open the document and tap the looking glass at the top of the screen, then type whatever term you're looking for.

How do you search within a document on iPhone?

Find a document Search: Tap in the search field at the top of the window, then enter all or part of the document's name. View only shared or recently edited documents: Tap Recents at the bottom of the screen.


3 Answers

This isn't a simple problem to implement, but it is straightforward.

For any given page you need to scan the page using the CGPDF scanner API. You need to register callbacks for PDF operators that affect text in the page - not just TJ/Tj, but also those that set font, affect the text drawing matrix, etc. You need to build a state machine that updates with each encountered tag+parameters. You need to examine text accounting for the current font's encoding. When you find text that you want to highlight, you'll need to examine the current text drawing matrix you've been updating to determine the drawing coordinates. Read the PDF specification (version 1.7 is downloadable from Adobe) to understand which operators you need to pay attention to.

Font encoding is perhaps the most difficult part since there are a handful of ways encoding can be specified, and some of them are proprietary to the font. Mostly you can cheat and fall back on a subset of ANSI encoding - but this WILL break on certain PDFs having strange fonts.

Essentially you are processing the page as if you were to render it.

like image 195
TomSwift Avatar answered Nov 03 '22 04:11

TomSwift


I created utility class in objective-c using PDF.js

Which will allow display as well as search PDF file.

Utility class allow search using Highlight all search result and 'case sensitive' options.

have look PDF search in action Link

like image 27
Jageen Avatar answered Nov 03 '22 04:11

Jageen


So now in iOS 11 we have PDFKit with which searching text is a breeze

if #available(iOS 11.0, *) {
     let pdfDocument = PDFDocument(url: fileUrl)!
     let allText = pdfDocument.string /// Gets all text in pdf separated by /n

     let s: PDFSelection = pdfDocument.findString("Hello", withOptions: [])
     let sWithFormatting = s!.first!.attributedString
}
like image 45
Alexandre G Avatar answered Nov 03 '22 04:11

Alexandre G