第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何將 xaml 頁(yè)面轉(zhuǎn)換為 pdf 文件并在 UWP 應(yīng)用程序內(nèi)的 pdf 查看器中顯示?

如何將 xaml 頁(yè)面轉(zhuǎn)換為 pdf 文件并在 UWP 應(yīng)用程序內(nèi)的 pdf 查看器中顯示?

C#
喵喵時(shí)光機(jī) 2022-11-21 22:06:27
我正在嘗試使用 Syncfusion PDF 查看器,但為了使用它,我最終必須將 xaml 頁(yè)面保存為 pdf 文件。我怎么做?我點(diǎn)擊了此鏈接,但它沒有給我想要的東西。XAML 到 PDF 轉(zhuǎn)換我正在嘗試使用下面的代碼來保存 xaml 頁(yè)面 [ new GenericManifestPDF(_manifestPDFDataModel); ] 從我的視圖模型類中得到這個(gè)錯(cuò)誤:' Value does not fall within the expected range ' in this line await renderTargetBitmap.RenderAsync(new GenericManifestPDF(_manifestPDFDataModel));   PdfDocument document = new PdfDocument();   //Add a new page   PdfPage page = document.Pages.Add();   //Initialize render to bitmap   var logicalDpi = DisplayInformation.GetForCurrentView().LogicalDpi;   var renderTargetBitmap = new RenderTargetBitmap();   //Create a Bitmap from XAML page   await renderTargetBitmap.RenderAsync(new GenericManifestPDF(_manifestPDFDataModel));   var pixelBuffer = await renderTargetBitmap.GetPixelsAsync();   //Save the XAML in bitmap image   using (var stream = new Windows.Storage.Streams.InMemoryRandomAccessStream())   {   var encoder = await BitmapEncoder.CreateAsync(BitmapEncoder.JpegEncoderId, stream);   encoder.SetPixelData(   BitmapPixelFormat.Bgra8,   BitmapAlphaMode.Ignore,   (uint)renderTargetBitmap.PixelWidth,   (uint)renderTargetBitmap.PixelHeight,   logicalDpi,   logicalDpi,   pixelBuffer.ToArray());   await encoder.FlushAsync();   //Load and draw the bitmap image in PDF   PdfImage img = PdfImage.FromStream(stream.AsStream());   if (img.Width > img.Height)      document.PageSettings.Orientation = PdfPageOrientation.Portrait;          else                                                                                      document.PageSettings.Orientation = PdfPageOrientation.Landscape;       var section = document.Sections.Add();       section.PageSettings.Size = new SizeF(img.Width, img.Height);       page = section.Pages.Add();       page.Graphics.DrawImage(img, new RectangleF(0, 0, img.Width, img.Height));                                        }
查看完整描述

1 回答

?
慕村225694

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個(gè)贊

您可以直接將 pdf 文件保存在中Windows.Storage.ApplicationData.Current.LocalFolder并使用Windows.Data.Pdf 命名空間API 在應(yīng)用程序中顯示 pdf,而不是調(diào)用Windows.System.Launcher.LaunchFileAsync(stFile)方法來啟動(dòng)其他應(yīng)用程序來打開 pdf 文件。

有關(guān)詳細(xì)信息,請(qǐng)參閱UWP PDF 文檔示例。


查看完整回答
反對(duì) 回復(fù) 2022-11-21
  • 1 回答
  • 0 關(guān)注
  • 149 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)