13

我已经设法在我的应用程序中实现了一个非常基本的 PDF 查看器,但想知道是否可以向 PDF 添加注释。我查看了 SDK 文档,但没有找到任何东西。我真的有两个问题:

  1. 是否有可能做到这一点?
  2. 最好的方法是什么?
  3. 有没有我可以包含的框架或库来帮助解决这个问题?

谢谢。

4

3 回答 3

18

您可以通过阅读 PDF 页面,将其绘制到新的 PDF 图形上下文中,然后在该图形上下文中绘制额外内容来进行注释。这是一些将位置 (100.0,100.0) 处的单词“示例注释”添加到现有 PDF 的代码。getPDFFileName 方法返回原始 PD 的路径。getTempPDFFileName 返回新 PDF 的路径,即原始 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);
}
于 2011-06-16T18:26:38.207 回答
3

我正在研究这些东西并创建了一个 GitHub 项目。请在这里查看

于 2015-02-26T02:34:36.397 回答
1

我认为PDFAnnotationPDFKit 没有从桌面移植到 iPhone.... 可能是提交雷达文件的好借口。但是,Haru可能会在此期间帮助您。

于 2010-02-22T18:43:28.860 回答