我一直在使用似乎是在 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 相同的质量?