OHPDFImage
OHPDFImage copied to clipboard
A library to easily load PDF files as UIImages
Hi, Your library is fantastic, it makes working with PDFs on iOS so easy! I've come across a PDF which has landscape slides when viewed in various PDF viewers but...
I don't understand why you chose to use `size_t` in your framework and not more common type, such as `NSUInteger`. Maybe the number of bytes is not the same? Anyway,...
init returns nil
One can use fixtures (some PDFs as input fixtures, and some PNGs as output fixtures) and compare what is generated from the code with the expected output fixture for each...
See [Quartz 2D PG: Transparency Layers](https://developer.apple.com/library/ios/documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_trans_layers/dq_trans_layers.html) Using `CGContextBeginTransparencyLayer`/`CGContextEndTransparencyLayer` may be a solution to avoid doing a 2-step rendering (first tinting, then do the final rendering), by using layers instead of...