在我的iOS应用中,我需要从我的webview内容创建一个pdf文档。我看过这些帖子:Creating PDF file from UIWebView和https://coderchrismills.wordpress.com/2011/06/25/making-a-pdf-from-a-uiwebview/
我想知道是否有更简单的方法可以做到这一点。例如,对于我的Mac项目,请使用:
NSData *pdf = [[[[webView mainFrame] frameView] documentView] dataWithPDFInsideRect:[[[webView mainFrame] frameView] documentView].frame];
PDFDocument *doc = [[PDFDocument alloc] initWithData:pdf];
在iOS中有没有简单的方法可以做到这一点?
从webview内容中获取最佳质量pdf文档的最佳选择是什么?
答案 0 :(得分:4)
没有像Mac上那样直接通过SDK的方法,但你可能希望看看BNHtmlPdfKit,它允许你保存网址,网页浏览量以及html字符串为PDF。
例如,如下:
self.htmlPdfKit = [BNHtmlPdfKit saveUrlAsPdf:[NSURL URLWithString:@"http://itsbrent.net"] toFile:@"...itsbrent.pdf" pageSize:BNPageSizeA6 success:^(NSString *pdfFileName) {
NSLog(@"Done");
} failure:^(NSError *err) {
NSLog(@"Failure");
}];
它使用自定义UIPrintPageRenderer
来覆盖paperRect
和printableRect
,从而导致UIPrintFormatter
返回pageCount以及呈现文档。
答案 1 :(得分:1)
我在AnderCover找到了很好的答案 " Creating PDF file from UIWebView" 它也没有使用任何第三方API。从webview创建pdf。
希望对你有帮助。