There has been many Questions recently about drawing PDF's.

Yes, you can render PDF's very easily with a UIWebView but this cant give the performance and functionality that you would expect from a good PDF viewer.

You can draw a PDF page to a CALayer or to a UIImage. Apple even have sample code to show how draw a large PDF in a Zoomable UIScrollview

But the same issues keep cropping up.

UIImage Method:

  1. PDF's in a UIImage don't optically scale as well as a Layer approach.
  2. The CPU and memory hit on generating the UIImages from a PDFcontext limits/prevents using it to create a real-time render of new zoom-levels.

CATiledLayer Method:

  1. Theres a significant Overhead (time) drawing a full PDF page to a CALayer: individual tiles can be seen rendering (even with a tileSize tweak)
  2. CALayers cant be prepared ahead of time (rendered off-screen).

Generally PDF viewers are pretty heavy on memory too. Even monitor the memory usage of apple's zoomable PDF example.

In my current project, I'm developing a PDF viewer and am rendering a UIImage of a page in a separate thread (issues here too!) and presenting it while the scale is x1. CATiledLayer rendering kicks in once the scale is >1. iBooks takes a similar double take approach as if you scroll the pages you can see a lower res version of the page for just less than a second before a crisp version appears.

Im rendering 2 pages each side of the page in focus so that the PDF image is ready to mask the layer before it starts drawing.Pages are destroyed again when they are +2 pages away from the focused page.

Does anyone have any insights, no matter how small or obvious to improve the performance/ memory handling of Drawing PDF's? or any other issues discussed here?

EDIT: Some Tips (Credit- Luke Mcneice,VdesmedT,Matt Gallagher,Johann):

  • Save any media to disk when you can.

  • Use larger tileSizes if rendering on TiledLayers

  • init frequently used arrays with placeholder objects, alternitively another design approach is this one

  • Note that images will render faster than a CGPDFPageRef

  • Use NSOperations or GCD & Blocks to prepare pages ahead of time.

  • call CGContextSetInterpolationQuality(ctx, kCGInterpolationHigh); CGContextSetRenderingIntent(ctx, kCGRenderingIntentDefault); before CGContextDrawPDFPage to reduce memory usage while drawing

  • init'ing your NSOperations with a docRef is a bad idea (memory), wrap the docRef into a singleton.

  • Cancel needless NSOperations When you can, especially if they will be using memory, beware of leaving contexts open though!

  • Recycle page objects by doing pointer swaps or destroy unused views

  • Close any open Contexts as soon as you don't need them

  • on receiving memory warnings release and reload the DocRef and any page Caches

Other PDF Features:

Documentation

Example projects

link|improve this question
edited with some basic tips – Luke Mcneice Oct 14 '10 at 10:24
commenting to ensure peeps get the edit notification – Luke Mcneice Nov 5 '10 at 9:20
+1 and thanks for adding all this info, wish I had it when I was developing my reader ;) also thanks for adding my question about PDF annotations (it also contains the answers with sample code). a few days ago I opened this: stackoverflow.com/questions/4097044/pdf-search-on-the-iphone do you have any tips? – pt2ph8 Nov 5 '10 at 11:47
I haven't covered this myself yet so i couldn't say anything other than point you to the random ideas blog: random-ideas.net/posts/42 Thanks for the post though, Im trying to gather all the PDF issues in one place. – Luke Mcneice Nov 5 '10 at 12:10
@Luke Mcneice: The problem is that the code in that post doesn't work with all PDFs (some just show weird characters, I guess it's an encoding issue but I'm not sure), and there's no explanation on how to highlight found text. Surely it's a start though, but far from real world working code... – pt2ph8 Nov 8 '10 at 13:14
show 2 more comments
feedback

3 Answers

up vote 36 down vote accepted

I have build such kind of application using approximatively the same approach except :

  • I cache the generated image on the disk and always generate two to three images in advance in a separate thread.
  • I don't overlay with a UIImage but instead draw the image in the layer when zooming is 1. Those tiles will be released automatically when memory warnings are issued.

Whenever the user start zooming, I acquire the CGPDFPage and render it using the appropriate CTM. The code in - (void)drawLayer: (CALayer*)layer inContext: (CGContextRef) context is like :

CGAffineTransform currentCTM = CGContextGetCTM(context);    
if (currentCTM.a == 1.0 && baseImage) {
    //Calculate ideal scale
    CGFloat scaleForWidth = baseImage.size.width/self.bounds.size.width;
    CGFloat scaleForHeight = baseImage.size.height/self.bounds.size.height; 
    CGFloat imageScaleFactor = MAX(scaleForWidth, scaleForHeight);

    CGSize imageSize = CGSizeMake(baseImage.size.width/imageScaleFactor, baseImage.size.height/imageScaleFactor);
    CGRect imageRect = CGRectMake((self.bounds.size.width-imageSize.width)/2, (self.bounds.size.height-imageSize.height)/2, imageSize.width, imageSize.height);
    CGContextDrawImage(context, imageRect, [baseImage CGImage]);
} else {
    @synchronized(issue) { 
        CGPDFPageRef pdfPage = CGPDFDocumentGetPage(issue.pdfDoc, pageIndex+1);
        pdfToPageTransform = CGPDFPageGetDrawingTransform(pdfPage, kCGPDFMediaBox, layer.bounds, 0, true);
        CGContextConcatCTM(context, pdfToPageTransform);    
        CGContextDrawPDFPage(context, pdfPage);
    }
}

issue is the object containg the CGPDFDocumentRef. I synchronize the part where I access the pdfDoc property because I release it and recreate it when receiving memoryWarnings. It seems that the CGPDFDocumentRef object do some internal caching that I did not find how to get rid of.

link|improve this answer
whats your approach when the user starts Zooming? – Luke Mcneice Oct 8 '10 at 12:58
1  
@Luke : I've modified the post to answer – VdesmedT Oct 9 '10 at 19:48
Thanks alot for this, and the tip about the CGPDFDocumentRef caching. – Luke Mcneice Oct 10 '10 at 14:08
Just a quick Question: why are you getting the pdfPageRef and transform when the scale is 1.0? because I see that you draw an baseImage (the image from the bg worker?) before you create the transform. – Luke Mcneice Oct 10 '10 at 14:15
2  
The CGPDFDocumentRef clean-up suggestion is great, because it effectively removes the extra leaking applied by Core Graphics in the CGContextDrawPage. What I did, instead of the synchronized statement, was to follow this approach: (1) got memory warning notification: set "memoryWarning" flag to YES ; (2) needs to render a new page (thumbnail): if "memoryWarning" is YES, then release CGPDFDocumentRef, reload it and get the page; while if "memoryWarning" is NO just get the new page; (3) render. It helped me to generate thumbnails of 1000+ documents while w/o this solution it was crashing at 700. – viggio24 May 12 '11 at 12:05
show 7 more comments
feedback

For a simple and effective PDF viewer, when you require only limited functionality, you can now (iOS 4.0+) use the QuickLook framework:

QLPreviewController *previewController = [[QLPreviewController alloc] init];
previewController.dataSource = self;
previewController.delegate = self;
previewController.currentPreviewItemIndex = indexPath.row;
[self presentModalViewController:previewController animated:YES];
[previewController release];

You need to link against QuickLook.framework and #import <QuickLook/QuickLook.h>

link|improve this answer
6  
QuickLook = Preview. Its lacking of all basic features required by a standard PDF viewer, something people expect on a real PDF reader. Preview is good for apps that do many things and can also download PDF documents (e.g.: a tourism app, you download a brochure and see it using QuickLook) but it's not good for a professional viewer that you are required to put in a magazine or newspaper reader. – viggio24 May 12 '11 at 12:09
Yeah, this is conceptually the same as using an UIWebView. We wouldn't spend hours figuring out how to use CGPDF* stuff if it was that easy. – pt2ph8 Jun 23 '11 at 18:04
Yeah, sure. I certainly don't present it as a complete solution. But some readers of this question may not be aware that, for some purposes, this is a reasonable solution. Updated the answer to make that clear. – Joshua J. McKinnon Jun 26 '11 at 22:19
1  
+1 for this. My primary interest is to allow the user to view some in-app documentation that is in PDF format. I don't care about searching, highlighting or any of the other bells and whistles -- just performant PDF rendering. – Answerbot Jul 20 '11 at 17:56
3  
For a working example, check out pspdfkit.com - it has sample code for both QuickLook and a more sophisticated side scrolling variant. – steipete Aug 6 '11 at 1:58
feedback

Have a look at Reader

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.