如何从 UIWebView 创建 UIImage

发布于 2024-10-26 23:30:12 字数 136 浏览 5 评论 0原文

在我计划做的 ipad 应用程序中,这将是关于在 UIWebView 中加载网页的。 我有一个功能,可以显示 UIWebView 的预览,更像是这些网页的缩略图。我该怎么做?从这些网页生成 UIImage 会很酷...... 希望有人可以帮助我实现这一目标。

In the ipad app im planning to do, it will be all about loading web pages in UIWebView.
I have a feature wherein I will display previews of the UIWebViews, more like thumbnails of these web pages. How do I do this? generating UIImage from these web pages would be cool...
Hope someone can help me achieve this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

镜花水月 2024-11-02 23:30:12
UIGraphicsBeginImageContext(yourWebView.bounds.size);
        [yourWebView.layer renderInContext:UIGraphicsGetCurrentContext()];
        UIImage *resultImageView = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

这个 resultImageView 将是您的答案...

UIGraphicsBeginImageContext(yourWebView.bounds.size);
        [yourWebView.layer renderInContext:UIGraphicsGetCurrentContext()];
        UIImage *resultImageView = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();

this resultImageView will be your answer...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文