gpt4 book ai didi

javascript - 用于查找文档中所有颜色的 Illustrator 脚本

转载 作者:行者123 更新时间:2023-11-29 16:01:59 33 4
gpt4 key购买 nike

我正在寻找一个脚本,它可以通过颜色编号(rgb 或 cmyk)为我提供 Adob​​e Illustrator 文档中所有颜色的列表。我没有代码,也不知道如何做到这一点,或者如果你可以的话。任何人都可以给我任何信息吗?

最佳答案

这将遍历事件文档中的所有形状,并使用它们的 RGB 填充颜色发布警告:

with (app.activeDocument) {
if (pathItems.length > 0)
{
alert(pathItems.length);
for (var g = 0 ; g < pathItems.length; g++)
{
if (pathItems[g].filled == true)
{
if (pathItems[g].fillColor.red > 200 == true && pathItems[g].fillColor.red < 210 == true && pathItems[g].fillColor.green > 200 == true && pathItems[g].fillColor.green < 210 == true && pathItems[g].fillColor.blue > 200 == true && pathItems[g].fillColor.blue < 210 == true)
{
alert('R' + pathItems[g].fillColor.red + ' G' + pathItems[g].fillColor.green + ' B' + pathItems[g].fillColor.blue);
}
}
}
}
}

注意:您的文档必须处于 RGB 颜色模式才能工作

长长的 If 行会回答您的 other question

关于javascript - 用于查找文档中所有颜色的 Illustrator 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51773047/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com