gpt4 book ai didi

c# - 通过 Microsoft XPS Document Writer 将 PDF 转换为 XPS

转载 作者:太空狗 更新时间:2023-10-29 18:00:16 28 4
gpt4 key购买 nike

使用 Microsoft XPS Document Writer 打印 pdf 文档:

string filename = "C:\\1.pdf";

Process process = new Process();
process.StartInfo.Verb = "PrintTo";

process.StartInfo.FileName = @"C:\Program Files\Adobe\Reader 9.0\Reader\acrord32.exe";

process.StartInfo.Arguments =
"/t \"C:\\1.pdf\" \"Microsoft XPS Document Writer\" \"xps\" XPSPort:";

process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.CreateNoWindow = true;

process.StartInfo.UseShellExecute = false;

process.Start();
process.StandardOutput.ReadToEnd();

process.WaitForExit();

唯一的问题是保存对话框,它要求将文件名 (*.xps) 保存到哪里。大家指教DOCINFO解决这个问题,但我没有找到任何使用的例子。我需要通过具有默认输出文件名的 Microsoft XPS Document Writer 以编程方式打印 PDF 文件。这种情况应该如何使用DOCINFO?

你能帮帮我吗?

最佳答案

您不能通过生成 Acrobat Reader 可靠地打印,除非您给它一个桌面 session 并且那里会有一个用户,因为它有时会弹出需要用户注意的对话框。

如果在无人看管的情况下使用,也会违反 Adob​​e 的许可。

但是您可以使用 Ghostscript 进行打印。

Ghostscript 有一个 C# 接口(interface),叫做 Ghostscript.Net我已经在一些非常大的项目中成功使用过。 Ghostscript 和 Ghostcript.Net 都是免费和开源的。

关于c# - 通过 Microsoft XPS Document Writer 将 PDF 转换为 XPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2287158/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com