开发者

Gray box on UIWebView Screenshot

开发者 https://www.devze.com 2023-03-08 14:02 出处:网络
I save a webview screenshot to a file using this method: UIGraphicsBeginImageContext(webview.bounds.size);

I save a webview screenshot to a file using this method:

UIGraphicsBeginImageContext(webview.bounds.size);     
[webview.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

[imageDat开发者_运维问答a writeToFile:imagePath atomically:YES]; 

But sometimes it's have a gray area in it. How i remove that a gray area?

Gray box on UIWebView Screenshot

0

精彩评论

暂无评论...
验证码 换一张
取 消