Indesign 转 JPG
我需要将 Indesign CS3 和 Quark 文件的每一页保存为 JPEG ,在我的可可应用程序中使用 Objective C...
有人可以建议我吗?
谢谢
I need to save every page of a Indesign CS3 and Quark file as JPEG , in my cocoa application using Objective C...
can anyone suggest me on this?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这听起来像是 Applescript 的任务。您可以编写一个使用 Indesign Applescript Dictionary 的 applescript,然后使用 Cocoa 和 Objective C 包装您的 applescript。
Indesign 和 Applescript
Cocoa 到 Applescript 的桥梁
不确定如何在 Applescript 周围进行 Cocoa 包装? Xcode 附带的开发者工具代码示例中有一些代码示例。
这可能会很有用AppleScript 和 Cocoa:从上到下。
This sounds like a task for Applescript. You could write an applescript that uses the Indesign Applescript Dictionary and then wrap your applescript with Cocoa and Objective C.
Indesign and Applescript
Cocoa to Applescript bridge
Not sure how to do Cocoa wrapper around applescript? There are some code examples in the developer tools code samples that come with Xcode.
This might be useful AppleScript and Cocoa: from Top to Bottom.
导出 PDF,然后导出为 JPEG。
要导出为 PDF,请查看此线程:http://objectmix.com/adobe-indesign/238509-newbie-question-how-batch-export-multiple-indd-pdf-files.html
Export PDF followed by export as JPEG.
To export as PDF take a look at this thread: http://objectmix.com/adobe-indesign/238509-newbie-question-how-batch-export-multiple-indd-pdf-files.html
我怀疑这确实是您想要的,但是这个 InDesign JavaScript 可能对您有所帮助。它将打开文档的每一页导出为单独的 jpeg。
I doubt this is really what you want but this InDesign JavaScript might help you somewhat. It exports each page of the open document to a separate jpeg.
这不就是文件>吗?导出,然后选择Jpeg?
Isn't that just File > Export, and then select Jpeg?
这是 Indesign (CS3) Applescript 指南< /a>(pdf)。它将包含可以编写哪些操作的详细信息。
另外,您可能会考虑 Automator,它本质上是 Applescript 的 GUI 前端。这里有一些专门针对 Indesign 的 Automator 操作。
以及 Adobe 提供的使用 Automator 和 Indesign 的工作流程指南。它包含一些有关如何在 Xcode 中执行操作的信息。
Here is the Indesign (CS3) Applescript Guide (pdf). It would have the details of what actions can be scripted.
Also, you might consider Automator which is essentially a GUI frontend to Applescript. Here some Automator actions specifically for Indesign.
And a workflow guide from Adobe using Automator and Indesign. It has some information on what to do in Xcode.