Photoshop 脚本获取实体填充图层的颜色?
我正在尝试编写一个 Photoshop jsx 脚本来从 PSD 模板中提取颜色值。颜色被定义为单独的填充层,我希望能够循环并创建 {layer_name: #hex_color} 值的哈希值。我没有找到任何有关读取填充层颜色值的文档。
I'm trying to write a Photoshop jsx script for extracting color values from a PSD template. The colors are defined as separate fill layers that I'd like to be able to loop through and create a hash of {layer_name: #hex_color} values. I'm not finding any documentation on reading the color value of the fill layer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果活动图层是一个solidFill图层,这将返回它的RGB值:
This will return the RGB values of the active layer if it's a solidFill layer:
我在此线程上找到了答案。
I found my answer on this thread.