使用 WebKit 捕获带有框架的网页

发布于 2024-10-30 04:32:30 字数 546 浏览 0 评论 0原文

我正在开发一个 OSX 应用程序,在其中从加载的 Web 视图创建 CIImage。以下是执行此操作的代码片段:

NSView *docView = [[[webView mainFrame] frameView] documentView];
NSBitmapImageRep *imageRep = [docView  bitmapImageRepForCachingDisplayInRect: [docView frame]];
[docView cacheDisplayInRect: [docView frame] toBitmapImageRep:imageRep];
CIImage *webPageImage = [[CIImage alloc] initWithBitmapImageRep: imageRep];

但是,使用此代码我无法捕获具有框架的网页。以下网页有框架: http://api.rubyonrails.org

如何解决此问题?

I am developing an OSX application in which I create an CIImage from web-view loaded. Following is the code snippet to do that:

NSView *docView = [[[webView mainFrame] frameView] documentView];
NSBitmapImageRep *imageRep = [docView  bitmapImageRepForCachingDisplayInRect: [docView frame]];
[docView cacheDisplayInRect: [docView frame] toBitmapImageRep:imageRep];
CIImage *webPageImage = [[CIImage alloc] initWithBitmapImageRep: imageRep];

But, using this code I am not able to capture the webpage that has frames. Following web page has frames: http://api.rubyonrails.org

How do I solve this problem?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文