The cgpdfcontext tag has no wiki summary.
4
votes
2answers
679 views
iOS PDF editing - Combining FastPDFKit / CGPDFContext and libHaru
I'm trying to add PDF Annotations onto an existing PDF file in iOS.
I understand that using FASTPDFKit / CGPDFContext, it is possible to READ ( but not EDIT ) almost all the information from an ...
4
votes
5answers
3k views
PDF files created on iPad don't display correctly on Windows
My iPhone app creates PDF files (in Arial font). The plain iPhone 3.1.x version works great (other than the known issue that PDF files created on the iPhone can't be viewed correctly in Google Docs or ...
2
votes
2answers
106 views
Exception releasing context after CGContextDrawPDFPage only for some pages
I've inherited some iOS code which opens a source PDF and creates a CGContextRef to which we draw a single page from the source document. The problem is that there are certain pages with one ...
2
votes
2answers
1k views
iPhone/iPad draw pdf like iBooks?
Does anyone know how to use core graphics to draw a pdf like in iBooks. I can already draw a pdf page using core graphics but was curious how iBooks shows a lower quality view of each page so it loads ...
1
vote
1answer
797 views
PDF zooming inside UIScrollView
I have a 2835 pixel PDF file inside 2835 pixel UIScrollView.
To display the PDF I use CATiledLayer.
My problem is when I zoom out the scrollView (at scale below 1) the PDF quality gets very bad. What ...
0
votes
1answer
39 views
Drawing a layer shadow to a PDF context
I have a bunch of UIViews to which I add shadows via their layers, in their drawRect method:
self.layer.shadowPath = path;
self.layer.shadowColor = [[UIColor blackColor] CGColor];
...
0
votes
0answers
321 views
Printing from an iOS device (AirPrint)
I think I must be coming at this from the wrong angle. This is my first foray into PDF with Quartz. I would like to have the ability to print text that is entered into my app, but I may need to drop ...
0
votes
1answer
308 views
Problem with ebook reader application
I am working on a ebook reader application... i can able to work exactly as iBooks application does.
I have used :
CFURLRef pdfURL = CFBundleCopyResourceURL(CFBundleGetMainBundle(), ...
0
votes
1answer
620 views
CGPDFContextCreateWithURL not correctly creating context
Using the following code, the ctx is not correctly being created. It remains nil:
#import <QuartzCore/QuartzCore.h>
@implementation UIView(PDFWritingAdditions)
- ...