将Webview2 Source直接设置为二进制流

Set Webview2 Source directly to a binary stream

我的应用程序中有一个 Webview2 控件,用于查看 PDF 文档。
该应用程序还存储和读取 MS SQL 服务器 PDF 数据。

目前,我正在从 SQL 中检索二进制数据,将它们转换为磁盘的临时文件并设置:

webview2.source = New Uri("file://" + filename)  

到目前为止一切正常,但我当然希望在不写入和读取磁盘的情况下完成这项工作。

有没有办法在不访问磁盘的情况下做同样的事情?

更新(按照推荐),我试过了。为了更好地理解,附上部分代码:

                Dim fieldOrdinal = reader.GetOrdinal(ColumnName)
                reader.Read()
                Dim blob = New Byte(reader.GetBytes(fieldOrdinal, 0, Nothing, 0, 0) - 1) {}
                reader.GetBytes(fieldOrdinal, 0, blob, 0, blob.Length)

                Dim pdfBase64 As String = Convert.ToBase64String(blob)
                Dim html As String = "<!DOCTYPE html><html><head></head><body><div>" & $"<iframe width=100% height=500 src=\" & Chr(&H22) & "data:Application/pdf;base64,{pdfBase64}\" & Chr(&H22) & ">" & "</iframe></div></body></html>"

webview2 控件显示一个框架,但没有内容

最后更新: 这里是(正确的)VB 翻译和工作代码:

Dim html As String = "<!DOCTYPE html><html><head></head><body><div>" & $"<iframe width=100% height=500 src=""data:Application/pdf;base64,{pdfBase64}"">" & "</iframe></div></body></html>"

您可以将 PDF 嵌入 IFRAME 作为 Base64,就像嵌入图像一样。
在这种情况下,mime类型当然是application/pdf.
使用 Convert.ToBase64String() 将源 PDF 字节转换为 Base64,使用标准 HTML5 header 并将 IFRAME and/or DIV 容器设置为所需大小.

使用 WebView2.NavigateToString() 方法加载带有嵌入 PDF 的 HTML:

string pdfBase64 = Convert.ToBase64String([Your PDF bytes]);

string html = "<!DOCTYPE html><html><head></head><body><div>" +
    $"<iframe width=100% height=500 src=\"data:application/pdf;base64,{pdfBase64}\">" +
    "</iframe></div></body></html>";

webView2.NavigateToString(html);

VB.Net版本:

Dim pdfBytes = [DataReader].GetSqlBytes([DataReader].GetOrdinal("[Column Name]")).Value
Dim pdfBase64 As String = Convert.ToBase64String(pdfBytes)

Dim html As String = "<!DOCTYPE html><html><head></head><body><div>" &
    $"<iframe width=100% height=500 src=""data:Application/pdf;base64,{pdfBase64}"">" &
    "</iframe></div></body></html>"

webView2.NavigateToString(html)

iframe 大小不应该这样设置,你应该使用 CSS 样式(并且可能是一个简单的 JavaScript 来处理 late 重新定义包含您的 PDF 的 Window 的大小。
您可以构建一个简单的 HTML 模板并按照说明填充 Base64 内容。

只是为了最终确定答案。在我使用的最终版本下方,包括框架 HTML 中的 CSS 以使 pdf 无边框和 100% x 100% 大小的父级 webview2:

Dim pdfBase64 As String = Convert.ToBase64String(pdfBytes)
Dim html As String = "<!DOCTYPE html><html><head>
                            </head>
                            <style>
                                   body   {margin: 0;}
                                   iframe {display: block; background: #000; border: none; height: 100vh; width: 100vw;}
                            </style>
                            <body>" & $"<iframe src=""data:Application/pdf;base64,{pdfBase64}"">" & "</iframe></body></html>"