iOS SDK-以编程方式生成PDF文件


79

坦白地说,在以编程方式绘制PDF文件时,使用CoreGraphics框架是一项繁琐的工作。

我想以编程方式创建PDF,使用整个应用程序视图中的各种对象。

我很想知道iOS SDK是否有不错的PDF教程,也许是库中的一个。

我看过本教程PDF Creation Tutorial,但是它主要是用C编写的。寻找更多的Objective-C风格。这似乎是写入PDF文件的一种荒谬方法,必须计算线条和其他对象的放置位置。

void CreatePDFFile (CGRect pageRect, const char *filename) 
{   
    // This code block sets up our PDF Context so that we can draw to it
    CGContextRef pdfContext;
    CFStringRef path;
    CFURLRef url;
    CFMutableDictionaryRef myDictionary = NULL;

    // Create a CFString from the filename we provide to this method when we call it
    path = CFStringCreateWithCString (NULL, filename,
                                      kCFStringEncodingUTF8);

    // Create a CFURL using the CFString we just defined
    url = CFURLCreateWithFileSystemPath (NULL, path,
                                         kCFURLPOSIXPathStyle, 0);
    CFRelease (path);
    // This dictionary contains extra options mostly for 'signing' the PDF
    myDictionary = CFDictionaryCreateMutable(NULL, 0,
                                             &kCFTypeDictionaryKeyCallBacks,
                                             &kCFTypeDictionaryValueCallBacks);

    CFDictionarySetValue(myDictionary, kCGPDFContextTitle, CFSTR("My PDF File"));
    CFDictionarySetValue(myDictionary, kCGPDFContextCreator, CFSTR("My Name"));
    // Create our PDF Context with the CFURL, the CGRect we provide, and the above defined dictionary
    pdfContext = CGPDFContextCreateWithURL (url, &pageRect, myDictionary);
    // Cleanup our mess
    CFRelease(myDictionary);
    CFRelease(url);
    // Done creating our PDF Context, now it's time to draw to it

    // Starts our first page
    CGContextBeginPage (pdfContext, &pageRect);

    // Draws a black rectangle around the page inset by 50 on all sides
    CGContextStrokeRect(pdfContext, CGRectMake(50, 50, pageRect.size.width - 100, pageRect.size.height - 100));

    // This code block will create an image that we then draw to the page
    const char *picture = "Picture";
    CGImageRef image;
    CGDataProviderRef provider;
    CFStringRef picturePath;
    CFURLRef pictureURL;

    picturePath = CFStringCreateWithCString (NULL, picture,
                                             kCFStringEncodingUTF8);
    pictureURL = CFBundleCopyResourceURL(CFBundleGetMainBundle(), picturePath, CFSTR("png"), NULL);
    CFRelease(picturePath);
    provider = CGDataProviderCreateWithURL (pictureURL);
    CFRelease (pictureURL);
    image = CGImageCreateWithPNGDataProvider (provider, NULL, true, kCGRenderingIntentDefault);
    CGDataProviderRelease (provider);
    CGContextDrawImage (pdfContext, CGRectMake(200, 200, 207, 385),image);
    CGImageRelease (image);
    // End image code

    // Adding some text on top of the image we just added
    CGContextSelectFont (pdfContext, "Helvetica", 16, kCGEncodingMacRoman);
    CGContextSetTextDrawingMode (pdfContext, kCGTextFill);
    CGContextSetRGBFillColor (pdfContext, 0, 0, 0, 1);
    const char *text = "Hello World!";
    CGContextShowTextAtPoint (pdfContext, 260, 390, text, strlen(text));
    // End text

    // We are done drawing to this page, let's end it
    // We could add as many pages as we wanted using CGContextBeginPage/CGContextEndPage
    CGContextEndPage (pdfContext);

    // We are done with our context now, so we release it
    CGContextRelease (pdfContext);
}

编辑:这是在iPhone项目中使用libHaru的GitHub上的示例。


1
哈哈,我知道这很旧,但iPhone上的100页pdf算不上什么。它会给服务器带来比iOS设备更多的压力,因为服务器必须将其乘以尝试执行此操作的并发用户数。
Armand 2015年

Answers:


56

几件事...

首先,iOS中的CoreGraphics PDF生成存在一个错误,该错误会导致PDF损坏。我知道这个问题在iOS 4.1(包括iOS 4.1)之前一直存在(我还没有测试过iOS 4.2)。该问题与字体有关,仅当您在PDF中包含文本时才会出现。症状是,在生成PDF时,您将在调试控制台中看到如下所示的错误:

<Error>: can't get CIDs for glyphs for 'TimesNewRomanPSMT'

棘手的方面是,生成的PDF在某些PDF阅读器中可以很好地呈现,而在其他地方则无法呈现。因此,如果您可以控制用于打开PDF的软件,则可以忽略此问题(例如,如果您仅打算在iPhone或Mac桌面上显示PDF,则可以使用CoreGraphics)。但是,如果需要创建可在任何地方使用的PDF,则应仔细研究此问题。以下是一些其他信息:

http://www.iphonedevsdk.com/forum/iphone-sdk-development/15505-pdf-font-problem-cant-get-cids-glyphs.html#post97854

解决方法是,我已在iPhone上成功使用libHaru替代了CoreGraphics PDF生成。最初使libHaru与我的项目一起构建有点棘手,但是一旦我正确设置了项目,它就可以很好地满足我的需求。

其次,根据PDF的格式/布局,您可以考虑使用Interface Builder创建一个视图,将其用作PDF输出的“模板”。然后,您将编写代码以加载视图,填写任何数据(例如,为UILabel设置文本等),然后将视图的各个元素呈现为PDF。换句话说,使用IB指定坐标,字体,图像等,并编写代码来呈现各种元素(如UILabelUIImageView等)的一种通用的方法,这样你就不必硬编码的一切。我使用了这种方法,并且非常适合我的需求。同样,这取决于您的情况,取决于您的PDF格式/布局需求。

编辑:(回应第一条评论)

我的实现是商业产品的一部分,这意味着我无法共享完整的代码,但是我可以给出一个大致的概述:

我创建了一个具有视图的.xib文件,并将该视图的大小调整为850 x 1100(我的PDF的目标是8.5 x 11英寸,因此可以轻松地转换为设计时坐标/从设计时坐标转换)。

在代码中,我加载视图:

- (UIView *)loadTemplate
{
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ReportTemplate" owner:self options:nil];
    for (id view in nib) {
        if ([view isKindOfClass: [UIView class]]) {
            return view;
        }
    }

    return nil;
}

然后,我填写各种元素。我使用标签来找到适当的元素,但是您可以通过其他方式来实现。例:

UILabel *label = (UILabel *)[templateView viewWithTag:TAG_FIRST_NAME];
if (label != nil) {
    label.text = (firstName != nil) ? firstName : @"None";

然后,我调用一个函数将视图呈现为PDF文件。此函数以递归方式遍历视图层次结构并呈现每个子视图。对于我的项目,我只需要支持Label,ImageView和View(对于嵌套视图):

- (void)addObject:(UIView *)view
{
    if (view != nil && !view.hidden) {
        if ([view isKindOfClass:[UILabel class]]) {
            [self addLabel:(UILabel *)view];
        } else if ([view isKindOfClass:[UIImageView class]]) {
            [self addImageView:(UIImageView *)view];
        } else if ([view isKindOfClass:[UIView class]]) {
            [self addContainer:view];
        }
    }
}

例如,这是我的addImageView的实现(HPDF_函数来自libHaru):

- (void)addImageView:(UIImageView *)imageView
{
    NSData *pngData = UIImagePNGRepresentation(imageView.image);
    if (pngData != nil) {
        HPDF_Image image = HPDF_LoadPngImageFromMem(_pdf, [pngData bytes], [pngData length]);
        if (image != NULL) {
            CGRect destRect = [self rectToPDF:imageView.frame];

            float x = destRect.origin.x;
            float y = destRect.origin.y - destRect.size.height;
            float width = destRect.size.width;
            float height = destRect.size.height;

            HPDF_Page page = HPDF_GetCurrentPage(_pdf);
            HPDF_Page_DrawImage(page, image, x, y, width, height);
        }
    }
}

希望能给你这个主意。


您是否有使用XIB作为模板的示例?
WrightsCS


8

iOS上的PDF函数全部基于CoreGraphics,这是有道理的,因为iOS中的绘制图元也基于CoreGraphics。如果要直接将2D基本体渲染到PDF中,则必须使用CoreGraphics。

UIKit中也存在一些对象的快捷方式,例如图像。将PNG绘制到PDF上下文仍然需要调用CGContextDrawImage,但是您可以使用可以从UIImage获取的CGImage来实现,例如:

UIImage * myPNG = [UIImage imageNamed:@"mypng.png"];
CGContextDrawImage (pdfContext, CGRectMake(200, 200, 207, 385), [myPNG CGImage]);

如果您需要有关总体设计的更多指导,请更明确地说明“整个应用程序中的各种对象”的含义以及您要实现的目标。


谢谢回复。对于对象,我仅表示我正在接受用户输入的文本,并希望将其放置在PDF的各个位置。正如您所指出的,一些图形。有点像可以通过电子邮件发送的表格。
WrightsCS

嗨,我有一个问题:这样(CGContextDrawImage),pdf不再是矢量。如果我想将多个矢量图形呈现到pdf的单个页面中,该怎么办,同时,确保pdf也是矢量
Paradise

2

迟了,但可能对其他人有帮助。听起来,PDF模板的操作风格可能是您想要的方法,而不是用代码构建PDF。由于无论如何都希望通过电子邮件发送电子邮件,因此您已连接到网络,因此可以使用Docmosis云服务之类的东西,该服务实际上是邮件合并服务。向其发送数据/图像以与您的模板合并。这种方法的好处是代码量少了很多,并且可以从iPad应用程序分担大部分处理工作。我已经看到它在iPad应用程序中使用过,这很好。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.