Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为 InDesign CS5 开发一个脚本。我需要选择一个区域并将其转换为图像。有没有办法做到这一点。我还需要将该图像发布到网页。
我可以通过 Javascript 做到这一点还是需要学习使用 c 进行 InDesign 插件开发。
好的,我找到了,通过脚本可以导出选定的对象或对象,如下所示..
假设您已在文档上进行了选择
var myObj = app.activeWindow.activePage.groups.add(app.selection); myObj.exportFile(ExportFormat.JPG, myFile, false); myObj.ungroup();