我已经设法在我的应用程序中实现了一个非常基本的PDF查看器,但是想知道是否可以向PDF添加注释。我查看了SDK文档,但没有找到任何内容。我真的有两个问题:
感谢。
答案 0 :(得分:18)
您可以通过阅读PDF页面,将其绘制到新的PDF图形上下文,然后将额外的内容绘制到该图形上下文来进行注释。下面是一些代码,它们将位置(100.0,100.0)处的单词“Example annotation”添加到现有PDF中。方法getPDFFileName返回原始PD的路径。 getTempPDFFileName返回新PDF的路径,即原始路径和注释。
要更改注释,只需添加更多绘图代码来代替drawInRect:withFont:方法。有关如何执行此操作的详细信息,请参阅“适用于iOS的绘图和打印指南”。
- (void) exampleAnnotation;
{
NSURL* url = [NSURL fileURLWithPath:[self getPDFFileName]];
CGPDFDocumentRef document = CGPDFDocumentCreateWithURL ((CFURLRef) url);// 2
size_t count = CGPDFDocumentGetNumberOfPages (document);// 3
if (count == 0)
{
NSLog(@"PDF needs at least one page");
return;
}
CGRect paperSize = CGRectMake(0.0,0.0,595.28,841.89);
UIGraphicsBeginPDFContextToFile([self getTempPDFFileName], paperSize, nil);
UIGraphicsBeginPDFPageWithInfo(paperSize, nil);
CGContextRef currentContext = UIGraphicsGetCurrentContext();
// flip context so page is right way up
CGContextTranslateCTM(currentContext, 0, paperSize.size.height);
CGContextScaleCTM(currentContext, 1.0, -1.0);
CGPDFPageRef page = CGPDFDocumentGetPage (document, 1); // grab page 1 of the PDF
CGContextDrawPDFPage (currentContext, page); // draw page 1 into graphics context
// flip context so annotations are right way up
CGContextScaleCTM(currentContext, 1.0, -1.0);
CGContextTranslateCTM(currentContext, 0, -paperSize.size.height);
[@"Example annotation" drawInRect:CGRectMake(100.0, 100.0, 200.0, 40.0) withFont:[UIFont systemFontOfSize:18.0]];
UIGraphicsEndPDFContext();
CGPDFDocumentRelease (document);
}
答案 1 :(得分:3)
我正在研究这些东西并创建了一个GitHub项目。请查看here。
答案 2 :(得分:1)
我不认为PDFAnnotation
或PDFKit从桌面移植到iPhone ......可能是file a radar的一个很好的借口。但是,Haru可能会让你在此期间。