针对iOS里复杂里的长视图,如浏览器或者复用列表,因为预加载和复用机制,直接调用系统提供的截屏方法只能截图可视区域,针对视图截图,视图可能被遮挡,长页面截图会预留空白。
iOS长视图分屏截屏和拼接方案的原理是根据长视图的滚动范围,自定义分页窗口大小(一般屏幕大小),依次截图再滚动屏幕再截图,最后将所有截图拼接,为了屏蔽视觉上截图的视觉差,先对第一屏的截图,然后盖在屏幕上,等拼接完销毁第一屏截图。
以下是对WKWebView截图的核心代码实现:
1. 截图方法,方法可声明在.h文件
- (void)snapshotInWKWebView:(WKWebView*)webView completionHandler:(completionBlock)completionBlock {
UIView *snapShotView = [webView snapshotViewAfterScreenUpdates:YES];
snapShotView.frame= webView.frame;
[webView.superviewaddSubview:snapShotView];
CGPointscrollOffset = webView.scrollView.contentOffset;
floatmaxIndex =ceilf(webView.scrollView.contentSize.height/ webView.height);
UIGraphicsBeginImageContextWithOptions(webView.scrollView.contentSize, false, [UIScreen mainScreen].scale);
[self snapshotWithWebView:webView fromIndex:0 toIndex:maxIndex callBackHandler:^{
UIImage *snapshotImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[webView.scrollViewsetContentOffset:scrollOffsetanimated:NO];
[snapShotViewremoveFromSuperview];
completionBlock(snapshotImage);
}];
}
2. 滚动截屏方法:
- (void)snapshotWithWebView:(WKWebView*)webView fromIndex:(int)index toIndex:(int)toIndex callBackHandler:(void(^)())callBackBlock {
[webView.scrollViewsetContentOffset:CGPointMake(0, (float)index * webView.height)];
CGRectsplitFrame =CGRectMake(0, (float)index * webView.height, webView.width, webView.height);
[webViewdrawViewHierarchyInRect:splitFrame afterScreenUpdates:YES];
if(index < toIndex){
[selfsnapshotWithWebView:webViewfromIndex:index +1toIndex:toIndexcallBackHandler:callBackBlock];
}
else{
callBackBlock();
}
}
网友评论