AI脚本使用技巧:利用AI脚本添加当前高光和阴影
平面设计 2021-07-03 16:32www.168986.cn平面设计培训
这篇教程教狼蚁SEO的朋友们用AI脚本添加当前高光和阴影到色板,教程主要介绍一下AI的脚本使用技巧。本文觉得不错,非常实用,所以转发过来和狼蚁SEO的AI爱好者们一起学习这个方法,希望对大家有一定的帮助。
该脚本会将当前的填色及其高光和阴影添加到色板之中。
默认RGB高光所有值+35、阴影-35;CMYK高光所有值-18%、阴影+10%。
如果选择的是一个专色,那么该颜色会被转换到当前文档的颜色空间中。
只能对一个纯色填充的对象执行该脚本,选择渐变、网格或是多个对象时均会报错!
要用“文件-脚本”来使用,以CS3为例应放在"C:\Program Files\Adobe\Adobe Illustrator CS3\预设\脚本"下。
,也可以放置在其他文件夹中,通过Ctrl+F12定位到脚本所在处来使用。
复制以下全部文字到记事本中,保存为以.js结尾的脚本文件(如脚本.js)即可。
复制代码
代码如下://///////////////////////////////////////////////////////////////
//Add Highlight And Shadow Swatches v.1 -- CS, CS2
//>=--------------------------------------
// A simple script for Animators. Takes current fill color from color pallate.
// a prompt will ask you to name the color, then it adds it to the swatch palate,
// along with the highlight and shadow for that color.
//
// feel free to tweak the values to get whatever percentages work best for you.
//
//>=--------------------------------------
// JS code (c) copyright: John Wundes ( john@wundes. ) .wundes.
//copyright full text here: http://.wundes./js4ai/copyright.txt
//////////////////////////////////////////////////////////////////</p> <p>//specified value greater than maximum allowed value(指定的值超出最大范围)</p> <p>var docRef= app.activeDocument;
if ( app.documents.length > 0 )
{
//在这设置RGB高光、阴影参数
RGBdarkenBy = -35;
RGBlightenBy = 75;
//在这设置CMYK高光、阴影参数
CMYKdarkenBy = 10;
CMYKlightenBy = -18;
defName = "";
nameMsg = "该填充色及其高光和阴影将被添加到色板中。默认RGB高光所有值+35、阴影-35;CMYK高光所有值-18%、阴影+10%。现在请为该填充色命名";</p> <p>//获取颜色空间名称
t=[];
t = ((activeDocument.documentColorSpace)+"").split(".")
colSpace = t[1];</p> <p>try{
var fill = docRef.defaultFillColor;
if(docRef.defaultFilled == false){
throw ("抱歉,没有找到填充色,请重新选择。");
}
if (fill.typename != "SpotColor" && fill.typename != "RGBColor" && fill.typename != "CMYKColor")
{
hrow("Sorry, "+fill.typename+" Objects are not currently supported.\nPlease convert the color to "+colSpace+".");
}
if(fill.typename == "SpotColor"){
nameMsg += "■警告■你选择了一个专色,该颜色会被转换到当前文档的颜色空间中。";
fill = docRef.defaultFillColor.spot.color;
defName = colSpace+"("+docRef.defaultFillColor.spot.name+")";
}
if(fill.typename == "RGBColor"){
fr = roundHack(fill.red);
fg = roundHack(fill.green);
fb = roundHack(fill.blue);
if (defName.length <1 )
{
defName = "r="+ fr+" g="+fg + " b="+fb;
}
colName = getName();
//在这里添加RGB颜色参数
makeColor([fr,fg,fb],RGBlightenBy,colName+" 的高光");
makeColor([fr,fg,fb],0,colName);
makeColor([fr,fg,fb],RGBdarkenBy,colName+" 的阴影");
} else if(fill.typename == "CMYKColor"){
fc = roundHack(fill.cyan);
fm = roundHack(fill.magenta);
fy = roundHack(fill.yellow);
fk = roundHack(fill.black);
if (defName.length <1)
{
defName = "c="+ fc+" m="+fm + " y="+fy+ " k="+fk;
}
colName = getName();
//在这里添加CMYK颜色参数
makeColor([fc,fm,fy,fk],CMYKlightenBy,colName+" 的高光");
makeColor([fc,fm,fy,fk],0,colName);
makeColor([fc,fm,fy,fk],CMYKdarkenBy,colName+" 的阴影");
}
}
catch(e) {
alert("请确认:\n"+e);
}</p> <p>}
function getName(){
x = prompt(nameMsg,defName);
if (x == null)
{
throw "操作被取消!";
}
return x;
}
function makeColor(arr,offset,ame){
for (each in arr)
{
arr[each] = parseInt(arr[each]);
arr[each] += offset;
}
if(arr.length == 3){
//RGB
var nc = new RGBColor();
nc.red = limit(arr[0],255);
nc.green = limit(arr[1],255);
nc.blue = limit(arr[2],255);
} else if (arr.length == 4){
//CMYK
var nc = new CMYKColor();
nc.cyan = limit(arr[0],100);
nc.magenta = limit(arr[1],100);
nc.yellow = limit(arr[2],100);
nc.black = limit(arr[3],100);</p> <p>}
var col = docRef.swatches.add();
col.name = ame;
col.color = nc;
}
function roundHack(n){
//make it a string
n = n +"" ;
ta = [];
ta = n.split(".");
return ta[0];
}
function limit(num,max){
if (num <= 0)
{
return 0;
}
else if(num > max )
{
return max;
}
else {
return num;
}
}
//Add Highlight And Shadow Swatches v.1 -- CS, CS2
//>=--------------------------------------
// A simple script for Animators. Takes current fill color from color pallate.
// a prompt will ask you to name the color, then it adds it to the swatch palate,
// along with the highlight and shadow for that color.
//
// feel free to tweak the values to get whatever percentages work best for you.
//
//>=--------------------------------------
// JS code (c) copyright: John Wundes ( john@wundes. ) .wundes.
//copyright full text here: http://.wundes./js4ai/copyright.txt
//////////////////////////////////////////////////////////////////</p> <p>//specified value greater than maximum allowed value(指定的值超出最大范围)</p> <p>var docRef= app.activeDocument;
if ( app.documents.length > 0 )
{
//在这设置RGB高光、阴影参数
RGBdarkenBy = -35;
RGBlightenBy = 75;
//在这设置CMYK高光、阴影参数
CMYKdarkenBy = 10;
CMYKlightenBy = -18;
defName = "";
nameMsg = "该填充色及其高光和阴影将被添加到色板中。默认RGB高光所有值+35、阴影-35;CMYK高光所有值-18%、阴影+10%。现在请为该填充色命名";</p> <p>//获取颜色空间名称
t=[];
t = ((activeDocument.documentColorSpace)+"").split(".")
colSpace = t[1];</p> <p>try{
var fill = docRef.defaultFillColor;
if(docRef.defaultFilled == false){
throw ("抱歉,没有找到填充色,请重新选择。");
}
if (fill.typename != "SpotColor" && fill.typename != "RGBColor" && fill.typename != "CMYKColor")
{
hrow("Sorry, "+fill.typename+" Objects are not currently supported.\nPlease convert the color to "+colSpace+".");
}
if(fill.typename == "SpotColor"){
nameMsg += "■警告■你选择了一个专色,该颜色会被转换到当前文档的颜色空间中。";
fill = docRef.defaultFillColor.spot.color;
defName = colSpace+"("+docRef.defaultFillColor.spot.name+")";
}
if(fill.typename == "RGBColor"){
fr = roundHack(fill.red);
fg = roundHack(fill.green);
fb = roundHack(fill.blue);
if (defName.length <1 )
{
defName = "r="+ fr+" g="+fg + " b="+fb;
}
colName = getName();
//在这里添加RGB颜色参数
makeColor([fr,fg,fb],RGBlightenBy,colName+" 的高光");
makeColor([fr,fg,fb],0,colName);
makeColor([fr,fg,fb],RGBdarkenBy,colName+" 的阴影");
} else if(fill.typename == "CMYKColor"){
fc = roundHack(fill.cyan);
fm = roundHack(fill.magenta);
fy = roundHack(fill.yellow);
fk = roundHack(fill.black);
if (defName.length <1)
{
defName = "c="+ fc+" m="+fm + " y="+fy+ " k="+fk;
}
colName = getName();
//在这里添加CMYK颜色参数
makeColor([fc,fm,fy,fk],CMYKlightenBy,colName+" 的高光");
makeColor([fc,fm,fy,fk],0,colName);
makeColor([fc,fm,fy,fk],CMYKdarkenBy,colName+" 的阴影");
}
}
catch(e) {
alert("请确认:\n"+e);
}</p> <p>}
function getName(){
x = prompt(nameMsg,defName);
if (x == null)
{
throw "操作被取消!";
}
return x;
}
function makeColor(arr,offset,ame){
for (each in arr)
{
arr[each] = parseInt(arr[each]);
arr[each] += offset;
}
if(arr.length == 3){
//RGB
var nc = new RGBColor();
nc.red = limit(arr[0],255);
nc.green = limit(arr[1],255);
nc.blue = limit(arr[2],255);
} else if (arr.length == 4){
//CMYK
var nc = new CMYKColor();
nc.cyan = limit(arr[0],100);
nc.magenta = limit(arr[1],100);
nc.yellow = limit(arr[2],100);
nc.black = limit(arr[3],100);</p> <p>}
var col = docRef.swatches.add();
col.name = ame;
col.color = nc;
}
function roundHack(n){
//make it a string
n = n +"" ;
ta = [];
ta = n.split(".");
return ta[0];
}
function limit(num,max){
if (num <= 0)
{
return 0;
}
else if(num > max )
{
return max;
}
else {
return num;
}
}
教程结束,希望这篇教程对AI学习者有一定的帮助!谢谢大家观看!
平面设计师
- 平面设计图怎么画 小学生画平面图
- 平面设计内容怎么写 平面设计的求职意向怎么写
- 平面设计图手绘 平面设计图手绘家具
- 平面设计多久能出师 平面设计要多久
- 女生做ui设计师有多累 女生为什么学ui的人很惨
- 哪里有学平面设计的学校 想学平面设计去哪里学
- 初学平面设计用哪个软件 平面设计初学者必备的
- 0基础学平面设计要多久 0基础自学平面设计
- 平面设计手绘培训 平面设计师培训班学费多少钱
- ui工作好找工作吗 ui好不好找工作
- 女生学室内设计吃香吗
- ps平面设计自学教程 平面设计ps入门教程
- 平面设计基础知识大全 平面设计基本常识
- 平面设计基础教学视频 平面设计教学零基础入门
- 平面设计基础教学 平面设计基础教学平时作业
- ui设计主要是学什么 ui设计一般是学什么