Acrobat X - 是否有命令行操作可以从 html 创建 pdf
这将在 Windows 计算机上完成,我们的构建脚本将我们软件的文档构建到框架 html 站点中。然后,我们希望使用新的 Acrobat X 自动生成 pdf。
This would be done on a Windows machine, our build script builds the documentation for our software into a framed html site. We then want to automate the building of a pdf using the new Acrobat X.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够执行以下操作:
c:/Program Files/Adobe/Acrobat 10.0/Acrobat/acrodist /n /q /o /out-dir file.ps
其中 /out-dir 是您想要文件的任何目标目录/n 启动一个新实例,/q 在完成后退出它。
这是概述所有开关的页面。我还没有用 10 测试所有这些,但我认为它们有效:
http ://home.comcast.net/~tom.brodhead/distiller-switches.htm
You should be able to do something like this:
c:/Program Files/Adobe/Acrobat 10.0/Acrobat/acrodist /n /q /o /out-dir file.ps
where /out-dir is whatever target directory you want your file to end up in. /n starts a new instance, and /q quits it when its done.
Here's a page that outlines all of the switches. I haven't tested all of this with 10, but I think they work:
http://home.comcast.net/~tom.brodhead/distiller-switches.htm