是否存在UIPrintPageRenderer

时间:2015-09-18 01:45:39

标签: ios objective-c uigraphicscontext uiprintpagerenderer

您可以在图层上调用renderInContextUIPrintPageRenderer有类似的东西吗?我基本上想要在UIImage的PDF文档的第一页中创建UIPrintPageRenderer。除了上下文部分中的实际渲染之外,我还有其余的代码。

编辑:我是否误解了一些基本的基本概念?如果是这样,请随时给我一个快速的课程。

1 个答案:

答案 0 :(得分:1)

this post获取Vel Genov的大部分信息,这是您应该做的:

下面的示例代码将类别添加到UIPrintPageRenderer以创建实际的PDF数据。

@interface UIPrintPageRenderer (PDF)
- (NSData*) createPDF;
@end

@implementation UIPrintPageRenderer (PDF)
- (NSData*) createPDF
{
    NSMutableData *pdfData = [NSMutableData data];
    UIGraphicsBeginPDFContextToData( pdfData, self.paperRect, 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;
}
@end

然后,这将进入webViewDidFinishLoad()

- (void)webViewDidFinishLoad:(UIWebView *)webViewIn {
    NSLog(@"web view did finish loading");

    // webViewDidFinishLoad() could get called multiple times before
    // the page is 100% loaded. That's why we check if the page is still loading
    if (webViewIn.isLoading)
        return;

    UIPrintPageRenderer *render = [[UIPrintPageRenderer alloc] init];
    [render addPrintFormatter:webViewIn.viewPrintFormatter startingAtPageAtIndex:0];

    // Padding is desirable, but optional
    float padding = 10.0f;

    // Define the printableRect and paperRect
    // If the printableRect defines the printable area of the page
    CGRect paperRect = CGRectMake(0, 0, PDFSize.width, PDFSize.height);
    CGRect printableRect = CGRectMake(padding, padding, PDFSize.width-(padding * 2), PDFSize.height-(padding * 2));

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

    // Call the printToPDF helper method that will do the actual PDF creation using values set above
    NSData *pdfData = [render createPDF];

    // Save the PDF to a file, if creating one is successful
    if (pdfData) {
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *path = [paths objectAtIndex:0];

        NSString *pdfPath = [path stringByAppendingPathComponent:[NSString stringWithFormat:@"Purchase Order.pdf"]];

        [pdfData writeToFile:pdfPath atomically:YES];
    }
    else
    {
        NSLog(@"error creating PDF");
    }
}

PDFSize定义为常量,设置为标准A4页面大小。它可以编辑以满足您的需求。

#define PDFSize CGSizeMake(595.2,841.8)

以下是Val对代码的说法:

  

调用webViewDidFinishLoad()时,视图可能不会100%加载。必须进行检查,以查看视图是否仍在加载。这很重要,因为它可能是您问题的根源。如果不是,那么我们很高兴。这里有一个非常重要的注意事项。一些网页是动态加载的(在页面本身中定义)。以youtube.com为例。页面几乎立即显示,并带有#34; loading&#34;屏幕。这将欺骗我们的网络视图,它正在加载&#34; isLoading&#34;属性将设置为&#34; false&#34;,而网页仍在动态加载内容。这是一个非常罕见的情况,在一般情况下,这个解决方案将运作良好。如果需要从这样的动态加载网页生成PDF文件,则可能需要将实际生成移动到其他位置。即使使用动态加载网页,您最终也会看到显示加载屏幕的PDF,而不是空PDF文件。

     

另一个关键方面是设置printableRect和pageRect。请注意,这些是单独设置的。如果printableRect小于paperRect,则最终会在内容周围添加一些填充 - 例如,请参阅代码。 Here is a link到Apple的API文档,并附有一些简短说明。