iOS - 从HTML内容创建多页PDF

时间:2012-04-12 08:27:36

标签: objective-c ios pdf-generation multipage

我有一个很长的html页面,想要将其转换为多页PDF文件。

我已按照提供的说明操作 对于给定的字符串内容,applehere - how to make multi page PDF

但是格式化NSString(带有一些类似的数据)比创建一个html页面困难。我创建了这个html并在UIWebView中显示它。

现在我想用这个HTML创建一个PDF到多页 PDF文件。

我正在使用的代码可以创建单个PDF。

- (void)createPDFfromUIView:(UIWebView *)aView saveToDocumentsWithFileName:(NSString*)aFilename
{
    // Creates a mutable data object for updating with binary data, like a byte array
    NSMutableData *pdfData = [NSMutableData data];

    // Points the pdf converter to the mutable data object and to the UIView to be converted
    UIGraphicsBeginPDFContextToData(pdfData, aView.bounds, nil);
    UIGraphicsBeginPDFPage();
    CGContextRef pdfContext = UIGraphicsGetCurrentContext();


    // draws rect to the view and thus this is captured by UIGraphicsBeginPDFContextToData

    [aView.layer renderInContext:pdfContext];

    // remove PDF rendering context
    UIGraphicsEndPDFContext();

    // Retrieves the document directories from the iOS device
    NSArray* documentDirectories = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask,YES);

    NSString* documentDirectory = [documentDirectories objectAtIndex:0];
    NSString* documentDirectoryFilename = [documentDirectory stringByAppendingPathComponent:aFilename];

    // instructs the mutable data object to write its context to a file on disk
    [pdfData writeToFile:documentDirectoryFilename atomically:YES];
    NSLog(@"documentDirectoryFileName: %@",documentDirectoryFilename);
}

任何人都可以提供一些帮助吗?

1 个答案:

答案 0 :(得分:16)

我根据我发现的每一个好建议创建了一个课程。我一直在挖掘很多东西,我希望我的课程能为那些试图直接从一些HTML源代码创建多页PDF的人提供一个良好的开端。

您可以在此处找到一些基本示例代码:https://github.com/iclems/iOS-htmltopdf

我和你有同样的问题,我的要求是: - 完整的PDF(真实文本,没有位图) - 智能多页(与每X像素切割一个全高的webview相比......)

因此,我使用的解决方案相当不错,因为它采用iOS用来分割打印页面的相同工具。

让我解释一下,我根据网页视图打印格式化程序设置了一个UIPrintPageRenderer(第一个提示):

UIPrintPageRenderer *render = [[UIPrintPageRenderer alloc] init];

[render addPrintFormatter:webView.viewPrintFormatter startingAtPageAtIndex:0];

CGRect printableRect = CGRectMake(self.pageMargins.left,
                              self.pageMargins.top,
                              self.pageSize.width - self.pageMargins.left - self.pageMargins.right,
                              self.pageSize.height - self.pageMargins.top - self.pageMargins.bottom);

CGRect paperRect = CGRectMake(0, 0, self.pageSize.width, self.pageSize.height);

[render setValue:[NSValue valueWithCGRect:paperRect] forKey:@"paperRect"];
[render setValue:[NSValue valueWithCGRect:printableRect] forKey:@"printableRect"];

NSData *pdfData = [render printToPDF];

[pdfData writeToFile: self.PDFpath  atomically: YES];

与此同时,我在UIPrintPageRenderer上创建了一个类别来支持:

-(NSData*) printToPDF
{
    [self doNotRasterizeSubviews:self.view];

    NSMutableData *pdfData = [NSMutableData data];

    UIGraphicsBeginPDFContextToData( pdfData, CGRectZero, nil );

    [self prepareForDrawingPages: NSMakeRange(0, self.numberOfPages)];

    CGRect bounds = UIGraphicsGetPDFContextBounds();

    for ( int i = 0 ; i < self.numberOfPages ; i++ )
    {
        UIGraphicsBeginPDFPage();

        [self drawPageAtIndex: i inRect: bounds];
    }

    UIGraphicsEndPDFContext();

    return pdfData;
}