关于 Photoshop、Excel 和外部图像的棘手问题
是的,我有一个 Photoshop PSD 文件、一个充满自定义数据的电子表格和一个充满图像的文件夹。我想要一种为电子表格中的每个条目创建唯一图像的方法,其中电子表格包含必须填充 PSD 中文本元素的数据,并引用需要粘贴到 Photoshop 中的图像。
我通常会手动执行此操作,但我需要为 400 多个图像完成此操作,因此我正在分析可以通过脚本或其他方式自动执行此操作的方法。
你们有什么想法吗?我绝望了!
Right, I have a photoshop PSD file, a spreadsheet filled with custom data and a folder full of images. I want a way to create a unique image for each entry in the spreadsheet, where the spread sheet contains data that must populate text elements in the PSD, and references an image which needs to be pasted in to photoshop.
I would normally do this manually, but I need it done for 400+ images, so I am analyzing ways I can automate this, scripted or otherwise.
Do you guys have any ideas? I am desperate!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为 Python 会满足你所需要的一切。
相关的 Stack Overflow 问题链接到如何使用 Python 和 Photoshop 的 COM 接口进行 PSD 编辑脚本。
该帖子链接到 Adobe Photoshop 脚本指南,其中似乎包括Photoshop 中的任何和所有可能的操作 - 文本和图层以及所有内容。
Python 还有一个 CSV 阅读器,因此您可以将电子表格导出为CSV 文件并将其读入您的 Python 脚本中。
I think Python will do everything you need.
A related Stack Overflow question links to a description of how to script PSD editing using Python and Photoshop's COM interface.
That post links to the Adobe Photoshop Scripting Guide, which appears to include any and all possible actions within Photoshop - text and layers and everything.
Python has a CSV reader, as well, so you can just export your spreadsheet as a CSV file and read it into your Python script.
使用 Photoshop 变量和数据集。 http://help.adobe.com/en_US/photoshop/ cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7417a.html
Use Photoshop Variables and Datasets. http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7417a.html