這篇文章給大家分享的是有關(guān)iOS如何實(shí)現(xiàn)對(duì)當(dāng)前webView進(jìn)行截屏的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
為東莞等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及東莞網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為網(wǎng)站設(shè)計(jì)制作、網(wǎng)站建設(shè)、東莞網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!
UIWebView和WKWebView的截屏有所區(qū)別:
UIWebView:
func getImage(context: ServiceExecuteContext) -> UIImage { //創(chuàng)建一個(gè)基于位圖的圖形上下文并指定大小 UIGraphicsBeginImageContextWithOptions(context.fromViewController.webView.bounds.size, true, 0) //renderInContext呈現(xiàn)接受者及其子范圍到指定的上下文 context.fromViewController.webView.layer.renderInContext(UIGraphicsGetCurrentContext()!) //返回一個(gè)基于當(dāng)前圖形上下文的圖片 let image = UIGraphicsGetImageFromCurrentImageContext() //移除棧頂?shù)幕诋?dāng)前位圖的圖形上下文 UIGraphicsEndImageContext() //let imagRef = CGImageCreateWithImageInRect((image?.CGImage)!, context.fromViewController.webView.bounds) //let newImage = UIImage.init(CGImage: imagRef!) //UIImageWriteToSavedPhotosAlbum(newImage, nil, nil, nil);//保存圖片到照片庫 return image! }
UIGraphicsBeginImageContext()方法傳入唯一參數(shù),是一個(gè)CGSize變量,用來指定圖形context的大小,所以獲取屏幕截圖的時(shí)候這個(gè)size該是屏幕的大小。其實(shí)了解了這個(gè)過程,就知道這個(gè)方法可以獲取任意區(qū)域的截圖,當(dāng)然是必須當(dāng)前頁面的一部分。你需要截取哪個(gè)view的圖像,就讓這個(gè)view的layer調(diào)用renderInContext把圖形渲染進(jìn)當(dāng)前圖形context。
WKWebView:
當(dāng)我嘗試去截取WKWebView的圖。截圖的結(jié)果返回給我的就僅僅只是一張背景圖, 顯然截圖失敗。通過搜索StackOverflow和Google, 我發(fā)現(xiàn)WKWebView并不能簡(jiǎn)單的使用layer.renderInContext的方法去繪制圖形。如果直接調(diào)用layer.renderInContext需要獲取對(duì)應(yīng)的Context, 但是在WKWebView中執(zhí)行UIGraphicsGetCurrentContext()的返回結(jié)果是nil
StackOverflow提供了一種解決思路是使用UIView的drawViewHierarchyInRect方法去截取屏幕視圖。通過直接調(diào)用WKWebView的drawViewHierarchyInRect方法(afterScreenUpdates參數(shù)必須為true), 可以成功的截取WKWebView的屏幕內(nèi)容
func getImage(context: ServiceExecuteContext) -> UIImage { UIGraphicsBeginImageContextWithOptions(context.fromViewController.webView.bounds.size, true, 0) for subView: UIView in context.fromViewController.webView.subviews { subView.drawViewHierarchyInRect(subView.bounds, afterScreenUpdates: true) } //UIApplication.sharedApplication().keyWindow?.layer.renderInContext(UIGraphicsGetCurrentContext()!) let image = UIGraphicsGetImageFromCurrentImageContext() UIGraphicsEndImageContext() //let imagRef = CGImageCreateWithImageInRect((image?.CGImage)!, context.fromViewController.webView.bounds) //let newImage = UIImage.init(CGImage: imagRef!) return image! }
感謝各位的閱讀!關(guān)于“iOS如何實(shí)現(xiàn)對(duì)當(dāng)前webView進(jìn)行截屏”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!