从命令行将 DOC 转换为 PDF

发布于 2024-12-06 18:03:35 字数 1539 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书间行客 2024-12-13 18:03:35

我推荐 OfficeToPDF 命令行应用程序。

C:\>OfficeToPDF.exe /bookmarks /print /verbose test.docx test.pdf
Converting test.docx to test.pdf
Converting with Word converter
Completed Conversion
C:\>

我使用这个解决方案使用 ANT 自动生成 PDF。

I recommend the OfficeToPDF command line application.

C:\>OfficeToPDF.exe /bookmarks /print /verbose test.docx test.pdf
Converting test.docx to test.pdf
Converting with Word converter
Completed Conversion
C:\>

I used this solution to automate the PDF generating using ANT.

路弥 2024-12-13 18:03:35

我很欣赏您尝试从命令行执行此操作,但因为您提到了 C#,所以我使用的方法是首先将 doc 转换为 C# 中的 ps (PostScript),这相对简单且文档齐全,然后从命令行使用Ghostscript 转换为 PDF。请不要低估这个看起来很基础的网站上的工具——它太神奇了。

I appreciate you are trying to do this from the command line but because you mentioned C#, the approach I use to is to first convert a doc to ps (PostScript) in C# which is relatively simple and well documented and then from the command line use Ghostscript to convert to PDF. Pls don't underestimate the tool from the basic looking website - it is amazing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文