将PDF文件附加到打印对话框



我正在尝试将PDF文件附加到打印对话框,但我还没有找到这样做的方法。

我正在使用一个WPF应用程序,我有一些与打印相关的代码,看起来像这样:

private void Imprimir() 
    {
        try
        {
            FixedDocument document = null;
            PageContent pageContent = null;
            FixedPage fixedPage = null;
            PrintDialog printDlg = new PrintDialog();
            if (printDlg.ShowDialog() != true)
                return;
            document.DocumentPaginator.PageSize = new System.Windows.Size(1400, 1450);
            fixedPage.Width = document.DocumentPaginator.PageSize.Width;
            fixedPage.Height = document.DocumentPaginator.PageSize.Height;
            fixedPage.Margin = new Thickness(96, 96, 0, 0);
            fixedPage.Children.Add(this);
            ((System.Windows.Markup.IAddChild)pageContent).AddChild(fixedPage);
            document.Pages.Add(pageContent);
            printDlg.PrintDocument(document.DocumentPaginator, "Impresion Cierre");
            fixedPage.Children.Clear();
        }
        catch (Exception ex)
        {
            System.Windows.MessageBox.Show(ex.Message);
        }
    }

但是,通过这种方式,我只是打印一个添加到固定页面的UI元素。我找了其他密码,但一无所获。所以,我不知道是否可以将本地存储的PDF文件添加到打印对话框中?

你不能使用PrintDialog来做到这一点。根据您的目标,有几个选项:

        var printQueue = LocalPrintServer.GetDefaultPrintQueue();
        using (var input = File.OpenRead("path_to_your.pdf")) {
            using (var job = printQueue.AddJob()) {
                using (var output = job.JobStream) {
                    input.CopyTo(output);
                }
            }
        }

将静默地将文件的打印作业发送到本地打印队列。打印作业是可配置的

或者你可以使用adobereader(或安装在用户机器上的另一个pdf阅读器)来为你处理,但开始的过程中,路径到你的pdf为FileName和Verb="print"。

另一个选择是使用第三方工具(如ghostscript)可以帮助你。

相关内容

  • 没有找到相关文章

最新更新