生成PDF时内存压力崩溃

时间:2013-11-14 20:28:54

标签: ios objective-c pdf uiwebview

我的应用程序接收UIWebView的内容并生成网页的PDF。这在较小的页面上工作正常但是当它达到大约10页时它会崩溃“由于内存压力”。此外,这是一个ARC应用程序。

我看到的主要答案是使用UIGraphicsBeginPDFContextToFile代替UIGraphicsBeginPDFContextToData,在更改为使用File后,我仍然遇到内存压力崩溃。我不明白为什么它不从内存中清除页面。我还在另一个问题中建议的循环中添加了@autoreleasepool { ... }。关于我在这里做错了什么想法?

这是PDF创建代码:

UIGraphicsBeginPDFContextToFile(dataFile, CGRectZero, nil);

for (int i = 0; i < pages; i++) {
    @autoreleasepool {
        NSLog(@"Creating Page %i", i);
        // Check to see if page draws more than the height of the UIWebView
        if ((i+1) * 720 > height) {
            CGRect f = [_appWebView frame];
            f.size.height -= (((i+1) * 720.0) - height);
            [_appWebView setFrame: f];
        }

        UIGraphicsBeginPDFPage();
        CGContextRef currentContext = UIGraphicsGetCurrentContext();
        CGContextTranslateCTM(currentContext, 36, 36); // Translate for 0.5" margins
        [[[_appWebView subviews] lastObject] setContentOffset:CGPointMake(0, 720 * i) animated:NO];
        [_appWebView.layer renderInContext:currentContext];
    }
}
UIGraphicsEndPDFContext();

这是完整的方法,如果它可以帮助任何:

-(void) generatePDF {

    startingFrame = _appWebView.frame;

    // Memory warning seems to happen on almost every PDF, clear cache here to be proactive.
    [[NSURLCache sharedURLCache] removeAllCachedResponses];

    UIWebView *webView = [[UIWebView alloc] initWithFrame: CGRectMake(0, 0, 6.5 * 72, 9 * 72)];
    [webView setDelegate: self];

    // Adjust to letter size paper size in portrait mode
    CGRect frame = _appWebView.frame;
    frame.size.height = 10*72; // 11" - 1" Margins = 720px (72px / inch)
    frame.size.width = 7.5*72; // 8.5 - 1" Margins = 612px (72px / inch)
    _appWebView.frame = frame;

    [_appWebView stringByEvaluatingJavaScriptFromString:@"window.scroll(0, 0);"];

    // Get the height of our webView
    NSString *heightStr = [_appWebView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight;"];

    int height = [heightStr intValue];

    // Get the number of pages needed to print. 10 * 72 = 720
    int pages = ceil(height / 720.0);

    // File
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *dataFile = [documentsDirectory stringByAppendingPathComponent:@"Configuration.pdf"];
    NSLog(@"File: %@", dataFile);

    UIGraphicsBeginPDFContextToFile(dataFile, CGRectZero, nil);

    for (int i = 0; i < pages; i++) {
        @autoreleasepool {
            NSLog(@"Creating Page %i", i);
            // Check to see if page draws more than the height of the UIWebView
            if ((i+1) * 720 > height) {
                CGRect f = [_appWebView frame];
                f.size.height -= (((i+1) * 720.0) - height);
                [_appWebView setFrame: f];
            }

            UIGraphicsBeginPDFPage();
            CGContextRef currentContext = UIGraphicsGetCurrentContext();
            CGContextTranslateCTM(currentContext, 36, 36); // Translate for 0.5" margins
            [[[_appWebView subviews] lastObject] setContentOffset:CGPointMake(0, 720 * i) animated:NO];
            [_appWebView.layer renderInContext:currentContext];
        }
    }

    UIGraphicsEndPDFContext();

    // Adjust to original size
    _appWebView.frame = startingFrame;
}

1 个答案:

答案 0 :(得分:0)

我不知道您收到内存错误的原因,但我在搜索PDF时遇到了类似的问题。基本上操作系统将整个PDF加载到内存中,然后搜索,然后删除pdf,即使我认为我一页一页地去。我的解决方案是一次只做一页,这解决了我的内存问题。

我的代码如下所示:

NSOperationQueue *operationQueue = [[NSOperationQueue alloc] init];
operationQueue.MaxConcurrentOperationCount = 1;


for(int i = 1; i <= totalPages; i++)
{

    // a block of operation
    [operationQueue addOperationWithBlock: ^ {


     }];
}