WinRt将PDF转换为图像可提高图像质量

时间:2015-06-02 06:38:38

标签: c# wpf pdf windows-runtime winrt-xaml

在WinRt应用程序中我想显示pdf内容。因此,我将所有pdf页面转换为图像。但质量非常糟糕。在缩放之后,它也会变得越来越多。

如何提高质量!?可以使用编码器吗?或者我需要更高的Widht / Hight值?

            StorageFile pdfFile = await ApplicationData.Current.LocalFolder.GetFileAsync(fileName);

            //Load Pdf File
            pdfDocument = await PdfDocument.LoadFromFileAsync(pdfFile);

            if (pdfDocument != null && pdfDocument.PageCount > 0) {

                //Get Pdf page
                for (int pageIndex = 0; pageIndex < pdfDocument.PageCount; pageIndex++) {

                    var pdfPage = pdfDocument.GetPage((uint)pageIndex);

                    if (pdfPage != null) {
                        // next, generate a bitmap of the page
                        StorageFolder tempFolder = ApplicationData.Current.TemporaryFolder;
                        StorageFile pngFile = await tempFolder.CreateFileAsync(Guid.NewGuid().ToString() + ".png", CreationCollisionOption.ReplaceExisting);

                        if (pngFile != null) {
                            IRandomAccessStream randomStream = await pngFile.OpenAsync(FileAccessMode.ReadWrite);

                            PdfPageRenderOptions pdfPageRenderOptions = new PdfPageRenderOptions();
                            pdfPageRenderOptions.IsIgnoringHighContrast = false;

                            PdfPageDimensions rotation =  pdfPage.Dimensions;
                            Size pdfPageSize = pdfPage.Size;
                            if (pdfPageSize.Height > 1000) {
                                pdfPageRenderOptions.DestinationHeight = (uint)(pdfPageSize.Height * 0.85);
                            }
                            else if (pdfPageSize.Width > 1000) {
                                pdfPageRenderOptions.DestinationWidth = (uint)(pdfPageSize.Width * 1.25);
                            }

                            await pdfPage.RenderToStreamAsync(randomStream, pdfPageRenderOptions);
                            await randomStream.FlushAsync();

                            randomStream.Dispose();
                            pdfPage.Dispose();

                            PdfPagePath = pngFile.Path;
                            PdfPagesPathCollection.Add(pngFile.Path);

                        }
                    }
                }
            }

1 个答案:

答案 0 :(得分:0)

PDF格式允许无限完美缩放,因为它是基于矢量的格式。当您将页面转换为图像时,您受到转换分辨率的限制,缩放将显示像素。

解决方案是以更高的分辨率渲染并缩放到显示器,它会给你一些缩放范围,但它仍然会达到极限。在其他平台上,这是通过仅渲染要在所需缩放级别查看的部分来完成的,但我不认为使用此PdfDocument可以实现这一点。