Альтернативный механизм для рисования PDF - это использование функций CGPDF *. Для этого используйте CGPDFDocumentCreateWithURL
для создания объекта CGPDFDocumentRef
. Затем используйте CGPDFDocumentGetPage
, чтобы получить объект CGPDFPageRef
. Затем вы можете использовать CGContextDrawPDFPage
, чтобы нарисовать страницу в вашем графическом контексте.
Возможно, вам придется применить преобразование, чтобы убедиться, что размер документа соответствует желаемому. Для этого используйте CGAffineTransform
и CGContextConcatCTM
.
Вот пример кода, извлеченного из одного из моих проектов:
// use your own constants here
NSString *path = @"/path/to/my.pdf";
NSUInteger pageNumber = 14;
CGSize size = [self frame].size;
// if we're drawing into an NSView, then we need to get the current graphics context
CGContextRef context = (CGContextRef)([[NSGraphicsContext currentContext] graphicsPort]);
CFURLRef url = CFURLCreateWithFileSystemPath(kCFAllocatorDefault, (CFStringRef)path, kCFURLPOSIXPathStyle, NO);
CGPDFDocumentRef document = CGPDFDocumentCreateWithURL(url);
CGPDFPageRef page = CGPDFDocumentGetPage(document, pageNumber);
// in my case, I wanted the PDF page to fill in the view
// so we apply a scaling transform to fir the page into the view
double ratio = size.width / CGPDFPageGetBoxRect(page, kCGPDFTrimBox).size.width;
CGAffineTransform transform = CGAffineTransformMakeScale(ratio, ratio);
CGContextConcatCTM(context, transform);
// now we draw the PDF into the context
CGContextDrawPDFPage(context, page);
// don't forget memory management!
CGPDFDocumentRelease(document);