4

我一直在使用似乎是在 MacOS 上生成打印件/PDF 的标准方式,方法是使用 aWebView生成内容并使用以下内容打印/保存为 PDF。

NSPrintOperation *printOperation = [NSPrintOperation printOperationWithView:[[[sender mainFrame] frameView] documentView]
                                                                      printInfo:self.printInfo];

这很好用,但是WebView自 10.14 以来已被弃用,并且随着 10.15 的到来,是时候转移到WKWebView. WKWebView将' 的视图传递给NSPrintOperation总是会给出一个空白页,此处已在其他几个问题中报告了该空白页。

我使用以下代码完成了所有工作:

WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc] init];
self.webView = [[WKWebView alloc] initWithFrame:printRect configuration:configuration];
self.webView.navigationDelegate = self;

[self.webView loadHTMLString:htmlString baseURL:nil];

.

- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation API_AVAILABLE(macosx(10.13))
{   
    if (@available(macOS 10.13, *))
    {
        [webView takeSnapshotWithConfiguration:nil completionHandler:^(NSImage *snapshotImage, NSError *error) {

            if (!error)
            {   
                NSRect vFrame = NSZeroRect;
                vFrame.size = [snapshotImage size];
                NSImageView *imageView = [[NSImageView alloc] initWithFrame:vFrame];
                [imageView setImage:snapshotImage];

                NSPrintOperation *printOperation = [NSPrintOperation printOperationWithView:imageView
                                                                                  printInfo:self.printInfo];

                if (self.saveToFilename)
                {
                    printOperation.showsPrintPanel = NO;
                    printOperation.showsProgressPanel = YES;
                }
                else
                {
                    printOperation.showsPrintPanel = YES;
                    printOperation.showsProgressPanel = YES;
                }

                BOOL success = [printOperation runOperation];

                if (self.printCompletionBlock) self.printCompletionBlock(success);
            }
        }];
    }
}

它生成一个图像快照,WKWebView然后使用一个NSImageView传递给NSPrintOperation. 问题是 PDF/Print 的质量不如旧方法。

老的 新的

如何从 WKWebView 中获得与旧 WebView 相同的质量?

4

1 回答 1

0

当前不支持从 WKWebView 在 macOS 上打印。

看:

如何在 OSX 和 iOS 上打印所有 WKWebView On AND Offscreen content

于 2019-08-16T14:03:29.610 回答