My instance of CGPDFScanner
is scanning a test pdf file.
At a given time, the current font dictionary has Encoding
value Identity-H
and a FontDescriptor
dictionary with key FontFile2
. This key happens to be for a stream value, whose dictionary has the key Filter
. The value for this key is FlateDecode
.
I'm unsure of how to interpret and use this (to, say, extract the text in the next Tj
block to Unicode). For example, do I just zlib-decompress the bytes in the next Tj
block? (There is no ToUnicode
key here.)
I'd thought all the decompression was carried out by the instance of CGPDFScanner
.