1

我想使用 c#、xaml 将 pdf 文件转换为 UWP 中的图像 UI 控件。

我已经阅读了另一种使用翻转查看器的方法,但我需要转换后的 PDF 文件的每个图像文件。

所以我修改了一些现有的样本来打开一个pdf文件。

我的问题是转换后的图像文件的质量非常差。

我什至看不到字母。

但是这个质量问题在其他 pdf 样本上是一样的。

看看我的代码。


private PdfDocument pdfDocument;

private async void LoadDocument()
    {
        pdfDocument = null;

        //Output means my image UI control (pdf image will be added)
        Output.Source = null;

        //PageNumberBox shows current page
        PageNumberBox.Text = "1";

        var picker = new FileOpenPicker();
        picker.FileTypeFilter.Add(".pdf");
        StorageFile file = await picker.PickSingleFileAsync();

        if (file != null)
        {               
            try
            {
                pdfDocument = await PdfDocument.LoadFromFileAsync(file);
            }
            catch (Exception ex)
            {                   
            }

            if (pdfDocument != null)
            {  // I use this text to move page.
                PageCountText.Text = pdfDocument.PageCount.ToString();                    
            }                
        }            

        uint pageNumber;
        if (!uint.TryParse(PageNumberBox.Text, out pageNumber) || (pageNumber < 1) || (pageNumber > pdfDocument.PageCount))
        {
            return;
        }

        Output.Source = null;

        // Convert from 1-based page number to 0-based page index.            
        uint pageIndex = pageNumber-1 ;

        using (PdfPage page = pdfDocument.GetPage(pageIndex))
        {
            var stream = new InMemoryRandomAccessStream();

            await page.RenderToStreamAsync(stream);

            BitmapImage src = new BitmapImage();
            Output.Source = src;
            await src.SetSourceAsync(stream);
        }
    }

这是我的 xaml 代码。

<Grid>
    <ScrollViewer >            
                <TextBlock Name="ViewPageLabel"VerticalAlignment="center">Now page</TextBlock>                   
                <TextBox x:Name="PageNumberBox" InputScope="Number" Width="30" Text="1" TextAlignment="Right" Margin="5,0,5,0"
                        AutomationProperties.LabeledBy="{Binding ElementName=ViewPageLabel}"/>
                <TextBlock VerticalAlignment="Center">of <Run x:Name="PageCountText"/>.</TextBlock>
    </ScrollViewer>
</Grid>

有什么建议吗?

请帮我。

感谢您阅读本文。

4

2 回答 2

0

最近遇到这个问题,在这里没有看到任何明确的答案,所以这里是:

JosephA 是在正确的轨道上,但 PdfPageRenderOptions 没有任何关于图像保真度/质量或类似我希望的任何东西。但是,它确实允许您指定图像尺寸。您所要做的就是扩大尺寸。

我怀疑发生的事情是 PDF 有一个“喜欢”使用的比例,它小于你想要绘制的图像。如果不指定尺寸,它会绘制“小”图像,然后放大,导致模糊。

相反,如果您明确告诉它以更高分辨率绘制图像,它会使用 PDF 魔法使这些线条更清晰,并且生成的光栅图像不必缩放/模糊。

PdfPage page = _document.GetPage(pageIndex);
await page.RenderToStreamAsync(stream, new PdfPageRenderOptions {
    DestinationWidth = (uint)page.Dimensions.MediaBox.Width * s,
    DestinationHeight = (uint)page.Dimensions.MediaBox.Height * s
});

像这样的东西会有所帮助,其中“s”是实现所需尺寸的比例因子。PdfPage.Dimensions 具有许多不同的属性,而不仅仅是您可能想要探索的“MediaBox”,具体取决于您的用例。

于 2021-11-03T16:20:07.530 回答
0

听起来您遇到了需要动态调整 PDF 页面呈现为图像的分辨率的常见问题。

我不熟悉该 PDF 库,但是您似乎需要使用带有PdfPageRenderOptions参数的RenderToStreamAsync()重载来完成此操作。

于 2018-08-21T21:13:49.297 回答