我正在使用Xamarin表单。 我想将 Webview 转换为byte []以进行打印功能。 我的代码在下面
// Generate the HTML
var htmlString = printTemplate.GenerateString();
// Create a source for the web view
var htmlSource = new HtmlWebViewSource();
htmlSource.Html = htmlString;
// Create and populate the Xamarin.Forms.WebView
var browser = new WebView();
browser.Source = htmlSource;
var printService = DependencyService.Get<IPrintService>();
printService.Print({{I WANT byte[] /Image here}});