如何将隐藏的webview的内容转换为uiimage?

时间:2011-05-17 13:23:01

标签: iphone ipad

在我的应用程序中,我将UIWebView中加载的内容转换为UIImage,并在UIImageView中显示它。

现在我要做的是从URL中加载隐藏的webview加载内容,然后将其内容转换为UIImage。

任何人都可以建议一种方法吗?

1 个答案:

答案 0 :(得分:1)

#import <QuartzCore/QuartzCore.h>
UIGraphicsBeginImageContext(yourWebView.bounds.size);
[yourWebView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();