How to view the code behind a PDF document in IOS

323 Views Asked by At

I have a PDF page that I've converted into a stream:

CGPDFContentStreamRef contentStream = CGPDFContentStreamCreateWithPage(pdfPage);

How can I view that stream as an NSString? I'd like to see the code that represents the PDF.

Thanks!

1

There are 1 best solutions below

0
On

It's not as easy as that. A stream can be any binary data, there might be multiple chained compression formats used. See http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/PDF32000_2008.pdf (Page 23ff) for potential formats.

Your best option is CGPDFScanner other than re-implementing a PDF parser/lexer from scratch (We did that in the commercially available PSPDFKit SDK for iOS and Android - it's complicated.)