绘制 PDF 的另一种机制是使用 CGPDF* 函数。为此,请使用CGPDFDocumentCreateWithURL
来创建一个CGPDFDocumentRef
对象。然后,用于CGPDFDocumentGetPage
获取CGPDFPageRef
对象。然后,您可以使用CGContextDrawPDFPage
将页面绘制到您的图形上下文中。
您可能必须应用转换以确保文档最终达到您想要的大小。使用CGAffineTransform
andCGContextConcatCTM
来执行此操作。
这是从我的一个项目中提取的一些示例代码:
// 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);